Skip to content

Commit 9deda2b

Browse files
committed
run tests before releasing
1 parent 248208f commit 9deda2b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ on:
66
- "v*" # i.e. v1.0, v20.15.10, ...
77

88
jobs:
9+
test:
10+
uses: ./.github/workflows/test.yml
11+
912
build:
1013
runs-on: ubuntu-latest
14+
needs: test
1115

1216
steps:
1317
- uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
# don't run tests for release tags
66
branches:
77
- "**"
8+
workflow_call:
89

910
jobs:
1011
lint:

0 commit comments

Comments
 (0)