Skip to content

Bump ipython from 8.12.3 to 8.30.0 #165

Bump ipython from 8.12.3 to 8.30.0

Bump ipython from 8.12.3 to 8.30.0 #165

Workflow file for this run

name: test-examples
on:
push:
branches:
- main
paths:
- '.github/actions/install/action.yml'
- '.github/workflows/test-examples.yml'
- '.pylintrc'
- 'examples/**'
- 'meltingpot/**'
- 'pyproject.toml'
- 'requirements.txt'
- 'setup.py'
pull_request:
branches:
- main
paths:
- '.github/actions/install/action.yml'
- '.github/workflows/test-examples.yml'
- '.pylintrc'
- 'examples/**'
- 'meltingpot/**'
- '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-examples:
name: Test examples
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- name: Checkout Melting Pot
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Install Melting Pot
uses: ./.github/actions/install
- name: Test examples
run: pytest examples
- name: Lint examples
run: pylint --errors-only examples
- name: Typecheck examples
run: pytype examples