Skip to content

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #329

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #329

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.8', '3.9', '3.10', '3.11', '3.12']
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