Skip to content

format: fix imports #268

format: fix imports

format: fix imports #268

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- run: pip install poetry
- run: poetry install
- run: cp .env-sample .env
- run: poetry run inv check.all
- run: poetry run coverage run ./manage.py test
- run: poetry run coverage xml
- uses: codecov/codecov-action@v3.1.1