ci: use starflow CI actions #2
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: QA | |
on: | |
push: | |
branches: | |
- "main" | |
- "feature/*" | |
- "hotfix/*" | |
- "release/*" | |
- "renovate/*" | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: lengau/starflow/lint@work/CRAFT-3602/test-action | |
unit-tests: | |
strategy: | |
matrix: | |
platform: | |
# We're just using ubuntu-latest since craft-platforms is pure Python. | |
- ubuntu-latest # amd64? | |
- [noble, arm64] # Self-hosted Ubuntu Noble runner to test arm64 | |
- windows-latest | |
- macos-15 # arm64 | |
- macos-13 # amd64 | |
runs-on: ${{ matrix.platform }} | |
env: | |
UV_PYTHON: ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: lengau/starflow/test-python@work/CRAFT-3602/test-action | |
with: | |
python-versions: 3.10 3.11 3.12 3.13 | |
integration-tests: | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
- macos-15 # arm64 | |
- macos-13 # amd64 | |
runs-on: ${{ matrix.platform }} | |
env: | |
UV_PYTHON: ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: lengau/starflow/test-python@work/CRAFT-3602/test-action | |
with: | |
python-versions: 3.10 3.12 | |
target: test-integration | |
lowest-tests: # Run unit and integration tests on the oldest Python available with UV | |
runs-on: ubuntu-latest | |
env: | |
UV_RESOLUTION: lowest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: lengau/starflow/test-python@work/CRAFT-3602/test-action | |
with: | |
python-versions: "3.10" |