run tests on prerelease django 5 #120
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: Tests | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [ 3.8, 3.9, '3.10', 3.11] | ||
poetry-version: [ 1.3.2 ] | ||
drf-version: [ 3.12, 3.14 ] | ||
os: [ ubuntu-latest ] | ||
# not compatible | ||
exclude: | ||
- django-version: 4.2 | ||
Check failure on line 19 in .github/workflows/test-suite.yml GitHub Actions / TestsInvalid workflow file
|
||
drf-version: 3.12 | ||
# django 5.0+ requires py3.10+ | ||
include: | ||
- python-version: '3.10' | ||
django-version: "5.0b1" | ||
drf-version: 3.14 | ||
- python-version: 3.11 | ||
django-version: "5.0b1" | ||
drf-version: 3.14 | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/actions-poetry@v2 | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
- name: Install dependencies | ||
run: poetry install --only main,test --all-extras | ||
- name: Upgrade django version | ||
run: | | ||
poetry run pip install "Django==${{ matrix.django-version }}" | ||
- name: Upgrade drf version | ||
run: | | ||
poetry run pip install "djangorestframework==${{ matrix.drf-version }}" | ||
- name: Echo env | ||
run: poetry run pip freeze | grep -E 'djangorestframework|Django' | ||
- name: Run tests | ||
run: make test | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./coverage.xml | ||
fail_ci_if_error: true | ||
verbose: true | ||
code-quality: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [ 3.8 ] | ||
poetry-version: [ 1.3.2 ] | ||
os: [ ubuntu-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/actions-poetry@v2 | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
- name: Install dependencies | ||
run: poetry install --only code-quality | ||
- name: Run pre-commit | ||
run: make run-hooks |