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 3d38c95 commit b14e2e9Copy full SHA for b14e2e9
.github/workflows/ci-meson.yml
@@ -25,6 +25,19 @@ jobs:
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
34
+ include:
35
+ - os: ubuntu
36
+ python: 3.11
37
+ editable: false
38
39
+ python: 3.12
40
+ editable: true
41
42
steps:
43
- uses: actions/checkout@v4
0 commit comments