We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ef245 commit 6c72e01Copy full SHA for 6c72e01
1 file changed
.github/workflows/unit-sec-test.yml
@@ -30,9 +30,18 @@ jobs:
30
runs-on: ubuntu-latest
31
steps:
32
33
- - name: Checkout github repo
34
- uses: actions/checkout@v4
35
-
+ - uses: actions/checkout@v4
+ - name: 'Setup Python ${{ matrix.python-version}}'
+ 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
45
- name: Install Snyk CLI
46
run: npm install -g snyk
47
0 commit comments