Add interrupt-driven game-master #1111
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: test-concordia | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/actions/install/action.yml' | |
| - '.github/workflows/test-concordia.yml' | |
| - '.pylintrc' | |
| - 'bin/install.sh' | |
| - 'concordia/**' | |
| - 'pyproject.toml' | |
| - 'requirements.txt' | |
| - 'setup.py' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/actions/install/action.yml' | |
| - '.github/workflows/test-concordia.yml' | |
| - '.pylintrc' | |
| - '.python-version' | |
| - 'bin/install.sh' | |
| - 'concordia/**' | |
| - 'pyproject.toml' | |
| - 'requirements.txt' | |
| - 'setup.py' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| test-concordia: | |
| name: Test Concordia | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Concordia | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 | |
| - name: Install Concordia | |
| uses: ./.github/actions/install | |
| - name: Test Concordia | |
| run: pytest concordia | |
| - name: Lint Concordia | |
| run: pylint --errors-only concordia | |
| - name: Typecheck Concordia | |
| run: pytype concordia |