Skip to content

ci/cirrus: align with gha #52

ci/cirrus: align with gha

ci/cirrus: align with gha #52

Workflow file for this run

name: Tests
on:
push:
pull_request:
merge_group:
concurrency:
group: tests-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
defaults:
run:
shell: bash
jobs:
changes:
name: Detect changed files
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
project: ${{ steps.changes.outputs.project }}
fixtures-pypi: ${{ steps.changes.outputs.fixtures-pypi }}
mypy: ${{ steps.changes.outputs.mypy }}
pytest: ${{ steps.changes.outputs.pytest }}
pytest-export: ${{ steps.changes.outputs.pytest-export }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
workflow: &workflow
- '.github/workflows/tests.yaml'
project: &project
- *workflow
- 'poetry.lock'
- 'pyproject.toml'
fixtures-pypi:
- *workflow
- 'tests/repositories/fixtures/pypi.org/**'
mypy:
- *project
- 'src/**.py'
pytest:
- *project
- 'src/**.py'
- 'tests/**'
pytest-export:
- *project
- 'src/**.py'
lockfile:
name: Check poetry.lock
runs-on: ubuntu-latest
if: needs.changes.outputs.project == 'true'
needs: changes
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap-poetry
- run: poetry check --lock
fixtures-pypi:
name: Check fixtures (PyPI)
runs-on: ubuntu-latest
if: needs.changes.outputs.fixtures-pypi == 'true'
needs: changes
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap-poetry
- run: poetry install --sync --only main,test
- run: poetry run env PYTHONPATH="$GITHUB_WORKSPACE" python tests/repositories/fixtures/pypi.org/generate.py
- run: git diff --exit-code --stat HEAD tests/repositories/fixtures/pypi.org
tests-matrix:
strategy:
matrix:
os:
- name: Ubuntu
image: ubuntu-22.04
- name: macOS
image: macos-12
- name: Windows
image: windows-2022
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false
# Use this matrix with multiple jobs defined in a reusable workflow:
uses: ./.github/workflows/.tests.yaml
with:
os-name: ${{ matrix.os.name }}
os-image: ${{ matrix.os.image }}
python-version: ${{ matrix.python-version }}
run-mypy: ${{ needs.changes.outputs.mypy == 'true' }}
run-pytest: ${{ needs.changes.outputs.pytest == 'true' }}
run-pytest-export: ${{ needs.changes.outputs.pytest-export == 'true' }}
secrets: inherit
status:
name: Status
runs-on: ubuntu-latest
if: always()
needs:
- lockfile
- fixtures-pypi
- mypy

Check failure on line 112 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yaml (Line: 112, Col: 9): Job 'status' depends on unknown job 'mypy'. .github/workflows/tests.yaml (Line: 113, Col: 9): Job 'status' depends on unknown job 'pytest'.
- pytest
- pytest-export
steps:
- run: ${{ (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) && 'false' || 'true' }}