]> nmode's Git Repositories - signal-cli/blob - .github/workflows/codeql-analysis.yml
Add build graalvm native step for CI
[signal-cli] / .github / workflows / codeql-analysis.yml
1 name: "CodeQL"
2
3 on:
4 push:
5 branches: [ master ]
6 pull_request:
7 # The branches below must be a subset of the branches above
8 branches: [ master ]
9 schedule:
10 - cron: '0 7 * * 4'
11
12 jobs:
13 analyse:
14 name: Analyse
15 runs-on: ubuntu-latest
16
17 steps:
18
19 - name: Setup Java JDK
20 uses: actions/setup-java@v3
21 with:
22 distribution: 'adopt'
23 java-version: 17
24
25 - name: Checkout repository
26 uses: actions/checkout@v3
27 with:
28 # We must fetch at least the immediate parents so that if this is
29 # a pull request then we can checkout the head.
30 fetch-depth: 2
31
32 # Initializes the CodeQL tools for scanning.
33 - name: Initialize CodeQL
34 uses: github/codeql-action/init@v2
35 # Override language selection by uncommenting this and choosing your languages
36 # with:
37 # languages: go, javascript, csharp, python, cpp, java
38
39 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
40 # If this step fails, then you should remove it and run the build manually (see below)
41 - name: Autobuild
42 uses: github/codeql-action/autobuild@v2
43
44 # â„šī¸ Command-line programs to run using the OS shell.
45 # 📚 https://git.io/JvXDl
46
47 # âœī¸ If the Autobuild fails above, remove it and uncomment the following three lines
48 # and modify them (or add more) to build your code if your project
49 # uses a compiled language
50
51 #- run: |
52 # make bootstrap
53 # make release
54
55 - name: Perform CodeQL Analysis
56 uses: github/codeql-action/analyze@v2