Merge pull request #265 from google-deepmind:dependabot/docker/dot-de… #104
This file contains 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-meltingpot | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-meltingpot/action.yml' | |
- '.github/workflows/test-meltingpot.yml' | |
- '.pylintrc' | |
- 'meltingpot/**' | |
- 'pyproject.toml' | |
- 'setup.py' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-meltingpot/action.yml' | |
- '.github/workflows/test-meltingpot.yml' | |
- '.pylintrc' | |
- 'meltingpot/**' | |
- 'pyproject.toml' | |
- 'setup.py' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
test-meltingpot: | |
name: Test Melting Pot | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Melting Pot | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Install Melting Pot | |
uses: ./.github/actions/install-meltingpot | |
- name: Test Melting Pot | |
run: pytest meltingpot | |
- name: Lint Melting Pot | |
run: pylint --errors-only meltingpot | |
- name: Typecheck Melting Pot | |
run: pytype meltingpot |