Skip to content

chore(deps-dev): bump the dev-dependencies group with 4 updates #20

chore(deps-dev): bump the dev-dependencies group with 4 updates

chore(deps-dev): bump the dev-dependencies group with 4 updates #20

Workflow file for this run

name: unit-tests-and-static-analysis
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
django: ['4.2', '5.2']
steps:
- uses: actions/checkout@v4
- name: set up Python ${{ matrix.python-version }} Django ${{ matrix.django }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
make install
- name: run tests
run: |
make test-all