Bump numpy from 1.24.3 to 1.26.0 #75
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: pylint-examples | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-examples/action.yml' | |
- '.github/actions/install-meltingpot/action.yml' | |
- '.github/workflows/pylint-examples.yml' | |
- '.pylintrc' | |
- 'examples/**' | |
- 'meltingpot/**' | |
- 'setup.py' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-examples/action.yml' | |
- '.github/actions/install-meltingpot/action.yml' | |
- '.github/workflows/pylint-examples.yml' | |
- '.pylintrc' | |
- 'examples/**' | |
- 'meltingpot/**' | |
- 'setup.py' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
pylint: | |
name: Lint examples | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout Melting Pot | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- name: Install examples | |
uses: ./.github/actions/install-examples | |
- name: Run PyLint on examples | |
run: pylint --errors-only examples |