We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 454bc07 commit 13db866Copy full SHA for 13db866
1 file changed
.github/workflows/unit-tests-srv.yml
@@ -23,6 +23,14 @@ jobs:
23
steps:
24
- uses: actions/checkout@v2
25
26
+# # <-- ADDING THIS STEP TO SOLVE CACHE ISSUE -->
27
+# - uses: actions/cache@v4
28
+# with:
29
+# path: |
30
+# ~/.cache/pip
31
+# .pytest_cache
32
+# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
33
+
34
- name: Make envfile
35
run: make staging-dotenv-file
36
@@ -55,7 +63,7 @@ jobs:
55
63
run: mkdir -p $GITHUB_WORKSPACE/.scannerwork && chmod -R 777 $GITHUB_WORKSPACE/.scannerwork && pwd && ls -a
56
64
57
65
- name: SonarCloud Scan
58
- uses: SonarSource/sonarqube-scan-action@v4.1.0
66
+ uses: SonarSource/sonarqube-scan-action@v4.2.0
59
67
env:
60
68
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
61
69
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments