Skip to content

Commit 3b5f6b8

Browse files
committed
ping
1 parent 8efc6dc commit 3b5f6b8

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
schedule:
6+
- cron: 0 0 * * *
7+
8+
jobs:
9+
analyze:
10+
name: Analyze
11+
runs-on: ubuntu-latest
12+
permissions:
13+
actions: read
14+
contents: read
15+
security-events: write
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
language:
21+
- ruby
22+
- javascript-typescript
23+
24+
steps:
25+
- name: Checkout repository
26+
uses: actions/checkout@v5
27+
with:
28+
submodules: recursive
29+
30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v4
32+
with:
33+
languages: ${{ matrix.language }}
34+
queries: security-and-quality
35+
36+
- name: Perform CodeQL analysis
37+
uses: github/codeql-action/analyze@v4
38+
with:
39+
category: '/language:${{matrix.language}}'

0 commit comments

Comments
 (0)