Skip to content

Update dependency ruff to v0.8.4 #767

Update dependency ruff to v0.8.4

Update dependency ruff to v0.8.4 #767

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
django-version: ["4.2", "5.0", "5.1"]
exclude:
- django-version: "5.0"
python-version: "3.9"
- django-version: "5.1"
python-version: "3.8"
- django-version: "5.1"
python-version: "3.9"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('dev-requirements.txt') }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r dev-requirements.txt
pip install Django~=${{ matrix.django-version }}
- name: Run tests
run: scripts/test.sh
- name: Build package
run: |
python -m pip install --upgrade pip build
python -m build