Skip to content

Merge pull request #93 from dkstlzk/patch-1 #3

Merge pull request #93 from dkstlzk/patch-1

Merge pull request #93 from dkstlzk/patch-1 #3

Workflow file for this run

name: Server testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: Run tests
# run: |
# python manage.py test
- name: Check for errors
run: |
python manage.py check