File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed
Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 99
1010 # Triggers the workflow on pushes to open pull requests with code changes
1111 pull_request :
12- paths:
12+ paths :
13+ - ' .github/workflows/test_suite_ubuntu.yml'
14+ - ' **.c'
15+ - ' **.cpp'
16+ - ' **.fypp'
17+ - ' **.f90'
18+ - ' **.F90'
19+ - ' **.pf'
20+ - ' **.py'
21+ - ' **.sh'
22+ - ' **CMakeLists.txt'
23+ - ' **requirements.txt'
24+ - ' **data/*'
25+ # Allows you to run this workflow manually from the Actions tab
26+ workflow_dispatch :
27+
28+ # Cancel jobs running if new commits are pushed
29+ concurrency :
30+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
31+ cancel-in-progress : true
32+
33+ # Workflow run - one or more jobs that can run sequentially or in parallel
34+ jobs :
35+ # This workflow contains a single job called "test-suite-ubuntu"
36+ test-suite-ubuntu :
37+ # The type of runner that the job will run on
38+ runs-on : ubuntu-latest
39+ strategy :
40+ fail-fast : false
41+ matrix :
42+ std : ["f2008", "f2018"]
You can’t perform that action at this time.
0 commit comments