Skip to content

Commit

Permalink
πŸ”’ Add CodeQL scanning (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hona committed Jun 5, 2023
1 parent 3e565f7 commit c1213e7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Code Scanning - Action"

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
CodeQL-Build:
runs-on: ubuntu-latest

permissions:
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

0 comments on commit c1213e7

Please sign in to comment.