Skip to content

Update poetry.lock (django and isort) #79

Update poetry.lock (django and isort)

Update poetry.lock (django and isort) #79

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
./scripts/install
- name: Check formatting and test
run: |
./scripts/pre-commit