Update workflows to use composite actions #2
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-meltingpot | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-meltingpot.yml' | |
- '.github/workflows/pylint-meltingpot.yml' | |
- '.pylintrc' | |
- 'examples/**' | |
- 'meltingpot/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-meltingpot.yml' | |
- '.github/workflows/pylint-meltingpot.yml' | |
- '.pylintrc' | |
- 'examples/**' | |
- 'meltingpot/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
pylint: | |
name: Lint Melting Pot | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Melting Pot | |
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 | |
- name: Install Melting Pot | |
uses: ./.github/actions/install-meltingpot | |
- name: Run PyLint on Melting Pot | |
run: pylint --errors-only meltingpot |