Skip to content

Commit

Permalink
ci: add minimal linting workflow
Browse files Browse the repository at this point in the history
As of right now it simply runs CodeQL on the codebase. Later there might
be more CI checks than this.
  • Loading branch information
trym-b committed Aug 16, 2023
1 parent 262869f commit 2a2ae57
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Main
on: push

jobs:
codeqL-build:
name: 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 2a2ae57

Please sign in to comment.