mirror of
https://github.com/pushbits/server.git
synced 2025-04-29 10:16:50 +02:00
Load virtual environment before running Semgrep
This commit is contained in:
parent
a15d63c63e
commit
20de51591b
2 changed files with 6 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -29,4 +29,6 @@ jobs:
|
|||
run: make setup
|
||||
|
||||
- name: Run tests
|
||||
run: make test
|
||||
run: |
|
||||
source $(poetry env info --path)/bin/activate
|
||||
make test
|
||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue