Skip to content

Commit 6c72e01

Browse files
committed
edit
1 parent 61ef245 commit 6c72e01

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/unit-sec-test.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,18 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232

33-
- name: Checkout github repo
34-
uses: actions/checkout@v4
35-
33+
- uses: actions/checkout@v4
34+
- name: 'Setup Python ${{ matrix.python-version}}'
35+
uses: actions/setup-python@v3
36+
with:
37+
python-version: '${{ matrix.python-version}}'
38+
39+
- name: Install dependencies
40+
run: |
41+
pip install -r requirements.txt
42+
python -m pip install --upgrade pip
43+
44+
3645
- name: Install Snyk CLI
3746
run: npm install -g snyk
3847

0 commit comments

Comments
 (0)