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 d493208 commit 70c2096Copy full SHA for 70c2096
.codacy.yml
.github/workflows/codacy.yml
@@ -38,6 +38,18 @@ jobs:
38
- name: Checkout code
39
uses: actions/checkout@v3
40
41
+ # Set up Python
42
+ - name: Set up Python
43
+ uses: actions/setup-python@v4
44
+ with:
45
+ python-version: '3.x'
46
+
47
+ # Install dependencies
48
+ - name: Install dependencies
49
+ run: |
50
+ python -m pip install --upgrade pip
51
+ pip install -r requirements.txt
52
53
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
54
- name: Run Codacy Analysis CLI
55
uses: codacy/codacy-analysis-cli-action@d840f886c4bd4edc059706d09c6a1586111c540b
0 commit comments