Load virtual environment before running Semgrep

This commit is contained in:
eikendev 2022-02-13 16:20:27 +01:00
parent a15d63c63e
commit 20de51591b
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694
2 changed files with 6 additions and 2 deletions

View file

@ -29,4 +29,6 @@ jobs:
run: make setup
- name: Run tests
run: make test
run: |
source $(poetry env info --path)/bin/activate
make test

View file

@ -32,7 +32,9 @@ jobs:
run: make setup
- name: Run tests
run: make test
run: |
source $(poetry env info --path)/bin/activate
make test
- name: Log in to the Container registry
uses: docker/login-action@v1