diff options
author | 0w0 <[email protected]> | 2023-04-06 16:25:27 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-06 16:25:27 +0800 |
commit | 51aa691f26403d2a01f27dd639872c0768ec2035 (patch) | |
tree | da2a9ba8328060e7a0b3f27081e3490b736d4dbf /.github | |
parent | 687b087f83c6565efdeb72c3b00ff13ef6b8c8f1 (diff) | |
download | ATRI-51aa691f26403d2a01f27dd639872c0768ec2035.tar.gz ATRI-51aa691f26403d2a01f27dd639872c0768ec2035.tar.bz2 ATRI-51aa691f26403d2a01f27dd639872c0768ec2035.zip |
๐ ๅขๅ ไปฃ็ ๅฎก่ฎก CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/codeql.yml | 37 |
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}}" |