Skip to content

Update poetry.lock (django) #121

Update poetry.lock (django)

Update poetry.lock (django) #121

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
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: Format check
run: |
./scripts/pre-commit
- name: Test
run: |
./scripts/test