Add support to secondary tables relationships #325
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: 🔂 Unit tests | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
paths: | |
- "src/strawberry-sqlalchemy-mapper/**" | |
- "tests/**" | |
- "pyproject.toml" | |
- "poetry.lock" | |
- ".github/workflows/test.yml" | |
- "noxfile.py" | |
jobs: | |
generate-jobs-tests: | |
name: 💻 Generate test matrix | |
runs-on: ubuntu-latest | |
outputs: | |
sessions: ${{ steps.set-matrix.outputs.sessions }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: python3 -m venv .venv | |
- id: set-matrix | |
shell: bash | |
run: | | |
. .venv/bin/activate | |
pip install poetry nox nox-poetry | |
echo sessions=$( | |
nox --json -t tests -l | | |
jq 'map( | |
{ | |
session, | |
name: "\( .name ) on \( .python )\( if .call_spec != {} then " (\(.call_spec | to_entries | map("\(.key)=\(.value)") | join(", ")))" else "" end )" | |
} | |
)' | |
) | tee --append $GITHUB_OUTPUT | |
unit-tests: | |
name: 🔬 ${{ matrix.session.name }} | |
needs: [generate-jobs-tests] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
session: ${{ fromJson(needs.generate-jobs-tests.outputs.sessions) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ikalnytskyi/action-setup-postgres@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: | | |
3.8 | |
3.9 | |
3.10 | |
3.11 | |
3.12 | |
3.13-dev | |
- run: pip install poetry nox nox-poetry coverage | |
- run: nox -r -t tests -s "${{ matrix.session.session }}" | |
- name: coverage xml | |
run: coverage xml -i | |
if: ${{ always() }} | |
- uses: codecov/codecov-action@v4 | |
if: ${{ always() }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
verbose: true | |
benchmarks: | |
name: 📈 Benchmarks | |
runs-on: ubuntu-22.04 # Using this version because CodSpeed doesn't support Ubuntu 24.04 LTS yet. | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install poetry | |
- uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: "3.12" | |
architecture: x64 | |
cache: "poetry" | |
- run: poetry env use 3.12 | |
- run: poetry install | |
if: steps.setup-python.outputs.cache-hit != 'true' | |
- name: Run benchmarks | |
uses: CodSpeedHQ/action@v3 | |
with: | |
token: ${{ secrets.CODSPEED_TOKEN }} | |
run: poetry run pytest tests/benchmarks --codspeed | |
lint: | |
name: ✨ Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: | | |
3.8 | |
3.9 | |
3.10 | |
3.11 | |
3.12 | |
- name: Pip and nox cache | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache | |
~/.nox | |
.nox | |
key: | |
${{ runner.os }}-nox-lint-${{ env.pythonLocation }}-${{ | |
hashFiles('**/poetry.lock') }}-${{ hashFiles('**/noxfile.py') }} | |
restore-keys: | | |
${{ runner.os }}-nox-lint-${{ env.pythonLocation }} | |
- run: pip install poetry nox nox-poetry uv | |
- run: nox -r -t lint | |
unit-tests-on-windows: | |
name: 🪟 Tests on Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install poetry | |
- run: pipx install coverage | |
- uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: "3.11" | |
cache: "poetry" | |
- run: poetry run pip install --upgrade pip setuptools wheel | |
- run: poetry install | |
if: steps.setup-python.outputs.cache-hit != 'true' | |
# we use poetry directly instead of nox since we want to | |
# test all integrations at once on windows | |
# but we want to exclude tests/mypy since we are using an old version of pydantic | |
- run: | | |
poetry run pytest --cov=. --cov-append --cov-report=xml -n auto --showlocals -vv | |
- name: coverage xml | |
run: coverage xml -i | |
if: ${{ always() }} | |
- uses: codecov/codecov-action@v4 | |
if: ${{ always() }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
verbose: true |