Skip to content

Bump actions/checkout from 3.5.0 to 3.5.3 #17

Bump actions/checkout from 3.5.0 to 3.5.3

Bump actions/checkout from 3.5.0 to 3.5.3 #17

Workflow file for this run

# Continuous integration tests.
name: pytype
on:
push:
branches:
- main
paths:
- '.github/workflows/pytype.yml'
- 'examples/**'
- 'meltingpot/**'
- 'pyproject.toml'
pull_request:
branches:
- main
paths:
- '.github/workflows/pytype.yml'
- 'examples/**'
- 'meltingpot/**'
- 'pyproject.toml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
pytype:
name: Typecheck Melting Pot
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: ${{ github.event_name != 'workflow_dispatch' }}
steps:
- name: Checkout Melting Pot
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Set up Python
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install setuptools pytype
- name: Install Melting Pot
run: pip -vvv install .
- name: Run PyType on Melting Pot
run: pytype meltingpot
- name: Install example requirements
run: pip -vvv install -r examples/requirements.txt
- name: Run PyType on examples
run: pytype examples