We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 248208f commit 9deda2bCopy full SHA for 9deda2b
.github/workflows/release.yml
@@ -6,8 +6,12 @@ on:
6
- "v*" # i.e. v1.0, v20.15.10, ...
7
8
jobs:
9
+ test:
10
+ uses: ./.github/workflows/test.yml
11
+
12
build:
13
runs-on: ubuntu-latest
14
+ needs: test
15
16
steps:
17
- uses: actions/checkout@v3
.github/workflows/test.yml
@@ -5,6 +5,7 @@ on:
5
# don't run tests for release tags
branches:
- "**"
+ workflow_call:
lint:
0 commit comments