We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1601156 commit a461733Copy full SHA for a461733
.github/workflows/license-audit.yml
@@ -30,6 +30,10 @@ jobs:
30
run: >
31
docker run -v $PWD:/scan licensefinder/license_finder /bin/bash -lc "
32
cd /scan &&
33
- pip3 install -r requirements.txt --quiet &&
+ apt-get update &&
34
+ apt-get install -y python3-venv &&
35
+ python3 -m venv .venv &&
36
+ source .venv/bin/activate &&
37
+ pip3 install -r requirements.txt &&
38
license_finder --decisions-file decisions.yml --python-version 3 --enabled-package-managers=pip
39
"
0 commit comments