Skip to content

Commit b64e537

Browse files
committed
Run CI only when relevant directories are modified
This avoids spawning dozens of jobs when modifying unrelated files (like README, documentation, etc...)
1 parent eb707ea commit b64e537

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/UnitTests.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
name: Unit Tests
1+
name: MPI.jl Unit Tests
22

33
on:
44
pull_request:
5-
5+
paths:
6+
- 'bin/**'
7+
- 'deps/**'
8+
- 'src/**'
9+
- 'test/**'
610
push:
711
branches:
812
- master
13+
paths:
14+
- 'bin/**'
15+
- 'deps/**'
16+
- 'src/**'
17+
- 'test/**'
918

1019
jobs:
1120
test-jll:
@@ -17,9 +26,6 @@ jobs:
1726
- ubuntu-latest
1827
- windows-latest
1928
julia_version:
20-
# Unsupported - "1.3"
21-
# Unsupported - "1.4"
22-
# Unsupported - "1.5"
2329
- "1.6"
2430
- "1.7"
2531
- "nightly"

0 commit comments

Comments
 (0)