Skip to content

Commit 7a83204

Browse files
add workflow run
1 parent 4887933 commit 7a83204

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

.github/workflows/test_suite_ubuntu.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,34 @@ on:
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"]

0 commit comments

Comments
 (0)