Skip to content

Commit 76c7fd0

Browse files
authored
ga: limiting testing on push
1 parent cea0e8c commit 76c7fd0

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/testpydra.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Pydra
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
49

510
defaults:
611
run:

.github/workflows/testsingularity.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: Singularity
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build:
711
name: Build
812
runs-on: ubuntu-latest
913
strategy:
1014
matrix:
11-
python-version: [3.7, 3.8, 3.9]
15+
python-version: [3.7, 3.8, 3.9, "3.10"]
1216
fail-fast: False
1317

1418
steps:

.github/workflows/testslurm.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: SLURM
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build:

0 commit comments

Comments
 (0)