We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799880a commit f1cce55Copy full SHA for f1cce55
.github/workflows/ci.yml
@@ -61,3 +61,30 @@ jobs:
61
- run: relint --version
62
- run: py.test --cov=.
63
- uses: codecov/codecov-action@v3
64
+
65
+ analyze:
66
+ name: CodeQL Analyze
67
+ needs: [PyTest]
68
+ runs-on: ubuntu-latest
69
+ permissions:
70
+ actions: read
71
+ contents: read
72
+ security-events: write
73
+ strategy:
74
+ fail-fast: false
75
+ matrix:
76
+ language: [ python ]
77
+ steps:
78
+ - name: Checkout
79
+ uses: actions/checkout@v3
80
+ - name: Initialize CodeQL
81
+ uses: github/codeql-action/init@v2
82
+ with:
83
+ languages: ${{ matrix.language }}
84
+ queries: +security-and-quality
85
+ - name: Autobuild
86
+ uses: github/codeql-action/autobuild@v2
87
+ - name: Perform CodeQL Analysis
88
+ uses: github/codeql-action/analyze@v2
89
90
+ category: "/language:${{ matrix.language }}"
0 commit comments