Files
django-template/.github/workflows/main.yml
2020-09-22 21:37:36 +02:00

19 lines
341 B
YAML

name: Run Django tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: make install
- name: Run tests
run: make test