Skip to content

Commit

Permalink
ci: use virtual environment for snyk deps
Browse files Browse the repository at this point in the history
OTT-6230
  • Loading branch information
thatsddr committed Jul 15, 2024
1 parent 13317f6 commit 2f71dcd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: snyk/actions/setup@master
- run: pip install -r requirements.txt
- run: |
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
working-directory: tests/docs
- run: >-
snyk test
Expand Down

0 comments on commit 2f71dcd

Please sign in to comment.