Skip to content

Merge pull request #671 from farridav/hotfix/fixing_collectstatic #968

Merge pull request #671 from farridav/hotfix/fixing_collectstatic

Merge pull request #671 from farridav/hotfix/fixing_collectstatic #968

Workflow file for this run

---
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install uv
run: pip install uv
- name: Run checks and tests
run: |
make deps
make check
make test
- name: Upload coverage to Coveralls
if: matrix.python-version == '3.12'
run: uv run coveralls