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 c8e48da commit 27ca0e5Copy full SHA for 27ca0e5
.github/workflows/meta.yml
@@ -1,16 +1,20 @@
1
name: metapackage-tests
2
3
on:
4
+ # On push, only run if any of the metapackage files has changed
5
push:
6
paths:
- - 'src/*meta*.f90' # On push, only launch job if something has changed in the metapackages
7
+ - 'src/*meta*.f90'
8
- 'src/fpm/*meta*.f90'
9
- 'src/fpm/manifest/*meta*.f90'
10
- 'src/ci/meta_tests.sh'
11
- 'src/.github/workflows/meta.yml'
12
+ # Always run on PR or release
13
pull_request:
14
release:
15
types: [published]
16
+ # Allow manual triggering
17
+ workflow_dispatch:
18
19
env:
20
CI: "ON" # We can detect this in the build system and other vendors implement it
0 commit comments