Skip to content

change makefile to direct run #14

change makefile to direct run

change makefile to direct run #14

Workflow file for this run

# .github/workflows/run-tests.yml
name: Run tests
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install find-similar
- name: Run tests
run: |

Check failure on line 23 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
coverage run --source='.' manage.py test
coverage html --omit=laboratory/asgi.py,laboratory/wsgi.py,manage.py,analysis/management/*
coverage report --omit=laboratory/asgi.py,laboratory/wsgi.py,manage.py,analysis/management/* --fail-under=100