Merge pull request #348 from lxgr-linux/fix/mousability_bugfix #1077
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Data validation | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependecies | |
| if: steps.cache-dependencies.outputs.cache-hit != 'true' | |
| run: | | |
| pip install scrap_engine pyyaml | |
| - name: Tests | |
| run: | | |
| cd src | |
| python -m unittest tests | |
| - name: Validate | |
| run: | | |
| cd src | |
| python -m pokete.util validate-data |