Skip to content

[MAINT] Update project infrastructure #2

[MAINT] Update project infrastructure

[MAINT] Update project infrastructure #2

name: Run all tests on label apply
on:
pull_request:
types: [labeled]
jobs:
pylint:
if: github.event.label.name == 'ready to merge'
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
uses: ./.github/workflows/define-pylint.yml
with:
python-version: ${{ matrix.python-version }}
secrets: inherit
pytest:
if: github.event.label.name == 'ready to merge'
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
uses: ./.github/workflows/define-pytest.yml
with:
python-version: ${{ matrix.python-version }}
secrets: inherit