FOSSDB/.github/workflows/test.yml
Kristofers Solo 623c5e22ae Fix tests
2023-04-12 10:45:21 +03:00

24 lines
579 B
YAML

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install django
- name: Test with django test
run: python manage.py test