File tree Expand file tree Collapse file tree 1 file changed +1
-34
lines changed Expand file tree Collapse file tree 1 file changed +1
-34
lines changed Original file line number Diff line number Diff line change 7
7
permissions : {}
8
8
9
9
jobs :
10
- fpvs :
11
- permissions :
12
- contents : read
13
- runs-on : ubuntu-latest
14
- strategy :
15
- fail-fast : false
16
- matrix :
17
- python-version : ["3.12"]
18
-
19
- steps :
20
- - name : Checkout repository
21
- uses : actions/checkout@v5
22
- with :
23
- persist-credentials : false
24
-
25
- - name : Set up Python ${{ matrix.python-version }}
26
- uses : actions/setup-python@v6
27
- with :
28
- python-version : ${{ matrix.python-version }}
29
-
30
- - name : Install dependencies
31
- run : |
32
- python -m venv ./venv
33
- source ./venv/bin/activate
34
- echo "PATH=${PATH}" >> "${GITHUB_ENV}"
35
- python -m pip install --upgrade pip
36
- python -m pip install --group all .
37
-
38
- - name : Run fpvs scan
39
- run : |
40
- python -m pip install fpvs
41
- git clone https://gitlab.com/gitlab-org/security-products/gemnasium-db.git
42
- fpvs-scan --verbose
43
-
44
10
pip-audit :
45
11
permissions :
46
12
contents : read
64
30
python -m venv ./venv
65
31
source ./venv/bin/activate
66
32
echo "PATH=${PATH}" >> "${GITHUB_ENV}"
33
+ python -m pip install --upgrade pip
67
34
python -m pip install --group all .
68
35
69
36
- name : Run pip-audit
You can’t perform that action at this time.
0 commit comments