Skip to content

Commit 062ba7e

Browse files
authored
ci: allow test workflows to be called from publish (#229)
addendum for #227
1 parent 7848d56 commit 062ba7e

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/libs-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Libs Test
22

33
on:
4+
# allow this workflow to be called from other workflows, namely: publish
5+
workflow_call:
46
push:
57
branches:
68
- main

.github/workflows/native-image-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Native Image Tests
22

33
on:
4+
# allow this workflow to be called from other workflows, namely: publish
5+
workflow_call:
46
push:
57
branches:
68
- main

.github/workflows/unit-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Unit Tests
22

33
on:
4+
# allow this workflow to be called from other workflows, namely: publish
5+
workflow_call:
46
push:
57
branches:
68
- main

0 commit comments

Comments
 (0)