We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13ec342 commit bfe32deCopy full SHA for bfe32de
.github/workflows/ci-meson.yml
@@ -24,17 +24,10 @@ jobs:
24
matrix:
25
os: [ubuntu]
26
python: ['3.11', '3.12']
27
- editable: [false, true]
28
- is-pull-request:
29
- - ${{ github.event_name == 'pull_request' }}
30
- # trick from https://github.com/orgs/community/discussions/26253#discussioncomment-6745038
31
- # in PR, only run the combinations listed below; otherwise, run all combinations
32
- exclude:
33
- - is-pull-request: true
+ editable:
+ ${{ github.event_name == 'pull_request' ? [false] : [false, true] }}
34
include:
35
- - os: ubuntu
36
- python: 3.11
37
- editable: false
+ # one additional editable run in pull_request, this has no effect if not pull_request
38
- os: ubuntu
39
python: 3.12
40
editable: true
0 commit comments