Skip to content

⬆ Update django requirement from <5.0.0,>=3.2.0 to >=3.2.0,<6.0.0 #125

⬆ Update django requirement from <5.0.0,>=3.2.0 to >=3.2.0,<6.0.0

⬆ Update django requirement from <5.0.0,>=3.2.0 to >=3.2.0,<6.0.0 #125

Workflow file for this run

name: Lint and Format
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -e .[lint]
- name: Lint
run: bash scripts/format.sh
- name: check Static Analysis
run: bash scripts/lint.sh