Skip to content

Commit 536a195

Browse files
committed
Fix Conda package workflows on PRs
1 parent 4eac427 commit 536a195

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Build mkl_random documentation
2+
23
on:
34
pull_request:
45
push:

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Build mkl_random with clang
2+
23
on:
34
pull_request:
45
push:

.github/workflows/conda-package-cf.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Conda package using conda-forge
22

3-
on: push
3+
on:
4+
pull_request:
5+
push:
6+
branches: [master]
47

58
permissions: read-all
69

.github/workflows/conda-package.yml

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

3-
on: push
3+
on:
4+
pull_request:
5+
push:
6+
branches: [master]
47

58
permissions: read-all
69

0 commit comments

Comments
 (0)