We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac3f3f commit 720db1fCopy full SHA for 720db1f
.github/workflows/deploy.yml
@@ -6,8 +6,13 @@ on:
6
- 'v*'
7
8
jobs:
9
- build:
+ lint:
10
+ uses: ./.github/workflows/lint.yml
11
+ tests:
12
+ uses: ./.github/workflows/tests.yml
13
+ release:
14
runs-on: ubuntu-latest
15
+ needs: [lint, tests]
16
17
steps:
18
- uses: actions/checkout@v3
.github/workflows/lint.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches: ["main"]
pull_request:
+ workflow_call:
build:
.github/workflows/tests.yml
0 commit comments