1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

don't use venv magic in github workflows

This commit is contained in:
Bastian Venthur
2021-02-13 12:54:42 +01:00
parent 570245558a
commit 972bf0c7da

View File

@@ -33,12 +33,13 @@ jobs:
- name: Install dependencies
run: |
make venv
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run linter
run: |
make lint
flake8
- name: Run tests
run: |
make test
pytest