File tree 1 file changed +31
-0
lines changed 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 40
40
run : |
41
41
pytest --no-cov-on-fail --cov argocd --cov-report html --cov-report term --cov-report xml tests/unit
42
42
./codecov -t ${CODECOV_TOKEN} -F unit
43
+ scan :
44
+ runs-on : ubuntu-latest
45
+ permissions :
46
+ contents : read
47
+ steps :
48
+ - name : ' Checkout Repository'
49
+ uses : actions/checkout@v3
50
+ - name : ' Dependency Review'
51
+ uses : actions/dependency-review-action@v2
52
+ analyze :
53
+ runs-on : ubuntu-latest
54
+ permissions :
55
+ actions : read
56
+ contents : read
57
+ security-events : write
58
+ strategy :
59
+ fail-fast : false
60
+ matrix :
61
+ language : [ 'python' ]
62
+ steps :
63
+ - name : Checkout repository
64
+ uses : actions/checkout@v3
65
+ - name : Initialize CodeQL
66
+ uses : github/codeql-action/init@v2
67
+ with :
68
+ languages : ${{ matrix.language }}
69
+ - name : Perform CodeQL Analysis
70
+ uses : github/codeql-action/analyze@v2
71
+ with :
72
+ category : " /language:${{matrix.language}}"
73
+
You can’t perform that action at this time.
0 commit comments