File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
pull-requests : write
16
16
checks : write
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
with :
20
20
ref : ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
21
21
fetch-depth : 0 # a full history is required for pull request analysis
Original file line number Diff line number Diff line change @@ -13,20 +13,20 @@ jobs:
13
13
14
14
matrix :
15
15
os : [ ubuntu-latest, windows-latest, macos-latest ]
16
- c_compiler : [ gcc-13 , clang, cl ]
16
+ c_compiler : [ gcc, clang, cl ]
17
17
include :
18
18
- os : windows-latest
19
19
c_compiler : cl
20
20
cpp_compiler : cl
21
21
- os : ubuntu-latest
22
- c_compiler : gcc-13
23
- cpp_compiler : g++-13
22
+ c_compiler : gcc
23
+ cpp_compiler : g++
24
24
- os : macos-latest
25
25
c_compiler : clang
26
26
cpp_compiler : clang++
27
27
exclude :
28
28
- os : windows-latest
29
- c_compiler : gcc-13
29
+ c_compiler : gcc
30
30
- os : windows-latest
31
31
c_compiler : clang
32
32
- os : ubuntu-latest
36
36
- os : macos-latest
37
37
c_compiler : cl
38
38
- os : macos-latest
39
- c_compiler : gcc-13
39
+ c_compiler : gcc
40
40
41
41
steps :
42
42
- name : Upgrade Build Tools and install Ninja
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ version: "1.0"
6
6
7
7
# Specify inspection profile for code analysis
8
8
profile :
9
- name : qodana.starter
9
+ name : qodana.recommended
10
10
11
11
# Enable inspections
12
12
# include:
@@ -26,4 +26,4 @@ profile:
26
26
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
27
27
28
28
# Specify Qodana linter for analysis (Applied in CI/CD pipeline)
29
- linter : jetbrains/qodana-<linter> :latest
29
+ linter : jetbrains/qodana-clang :latest
You can’t perform that action at this time.
0 commit comments