Skip to content

Bump django from 4.2.17 to 4.2.18 (#12) #19

Bump django from 4.2.17 to 4.2.18 (#12)

Bump django from 4.2.17 to 4.2.18 (#12) #19

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Upgrade Setuptools
run: pip install --upgrade setuptools wheel
- name: Install requirements
run: pip install -r requirements-dev.txt
- name: Run lint
run: make lint