Run unit-tests on supported platforms #529
Workflow file for this run
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 | |
on: | |
push: | |
paths: | |
- '**/*.py' | |
- '.pylintrc' | |
merge_group: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
copyright_header: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check licence headers | |
run: ./tools/check_copyright.sh | |
pylint: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install --require-hashes --no-deps -r requirements.txt | |
pip install --upgrade pylint | |
- name: Register matcher | |
run: echo ::add-matcher::./.github/python_matcher.json | |
- name: Test code with pylint | |
run: ./tools/run_pylint.sh | |