Skip to content

bump version 0.0.5 -> 0.0.6 #19

bump version 0.0.5 -> 0.0.6

bump version 0.0.5 -> 0.0.6 #19

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
django-version: ['4.2', '5.0']
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: |
pdm sync -v --dev
pdm add "Django==${{ matrix.django-version }}"
- name: Run tests
run: pdm run pytest tests/