We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8807893 commit 895e35aCopy full SHA for 895e35a
.github/workflows/ci.yml
@@ -138,6 +138,7 @@ jobs:
138
// use large runners where available (original repo)
139
let large = ${{ github.repository == 'leanprover/lean4' }};
140
const isPr = "${{ github.event_name }}" == "pull_request";
141
+ const isMerge = "${{ github.event_name }}" == "merge_group";
142
let matrix = [
143
/* TODO: to be updated to new LLVM
144
{
@@ -229,7 +230,7 @@ jobs:
229
230
// 2. To skip it in merge queues as it takes longer than the Linux build and adds
231
// little value in the merge queue
232
// 3. To run it in release (obviously)
- "check-level": isPr ? 0 : 2,
233
+ "check-level": isMerge ? 2 : 0,
234
"secondary": isPr,
235
},
236
0 commit comments