You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} # workflow limits it to this workflow, ref includes a pushed branch or on pull request merge branch
cancel-in-progress: true
permissions:
contents: read
jobs:
flake8:
name: Lint (Flake8)
uses: ./.github/workflows/flake8.yml # Call the reusable workflow
secrets: inherit
pyright:
name: Lint (PyRight)
uses: ./.github/workflows/pyright.yml # Call the reusable workflow
secrets: inherit
pytest:
name: Test (Pytest)
uses: ./.github/workflows/pytest.yml # Call the reusable workflow