summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
author0w0 <[email protected]>2023-04-06 16:25:27 +0800
committerGitHub <[email protected]>2023-04-06 16:25:27 +0800
commit51aa691f26403d2a01f27dd639872c0768ec2035 (patch)
treeda2a9ba8328060e7a0b3f27081e3490b736d4dbf /.github
parent687b087f83c6565efdeb72c3b00ff13ef6b8c8f1 (diff)
downloadATRI-51aa691f26403d2a01f27dd639872c0768ec2035.tar.gz
ATRI-51aa691f26403d2a01f27dd639872c0768ec2035.tar.bz2
ATRI-51aa691f26403d2a01f27dd639872c0768ec2035.zip
๐Ÿ“ˆ ๅขžๅŠ ไปฃ็ ๅฎก่ฎก CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 0000000..33bb0f1
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,37 @@
+name: "CodeQL"
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+ schedule:
+ - cron: '34 6 * * 3'
+
+jobs:
+ analyze:
+ name: Analyze Code
+ runs-on: ubuntu-latest
+ permissions:
+ actions: read
+ contents: read
+ security-events: write
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language: [ 'python' ]
+
+ steps:
+ - name: Checkout ๐Ÿ›Ž๏ธ
+ uses: actions/checkout@v3
+
+ - name: Initialize CodeQL ๐Ÿฑ
+ uses: github/codeql-action/init@v2
+ with:
+ languages: ${{ matrix.language }}
+
+ - name: Perform CodeQL Analysis ๐Ÿš€
+ uses: github/codeql-action/analyze@v2
+ with:
+ category: "/language:${{matrix.language}}"