Skip to content

Commit 0fbba39

Browse files
committed
Merge branch 'main' into cardano
Signed-off-by: Simon Gellis <[email protected]>
2 parents d219791 + 96eff81 commit 0fbba39

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "CodeQL"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
analyze:
21+
name: Analyze
22+
runs-on: ubuntu-latest
23+
permissions:
24+
security-events: write
25+
strategy:
26+
fail-fast: false
27+
matrix:
28+
language:
29+
- go
30+
steps:
31+
- name: Checkout repository
32+
uses: actions/checkout@v4
33+
- name: Initialize CodeQL
34+
uses: github/codeql-action/init@v3
35+
with:
36+
languages: ${{ matrix.language }}
37+
- name: Autobuild
38+
uses: github/codeql-action/autobuild@v3
39+
- name: Perform CodeQL Analysis
40+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)