We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c83acb commit bc2179bCopy full SHA for bc2179b
2 files changed
.github/workflows/release.yaml
@@ -6,16 +6,18 @@ on:
6
- "v*.*.*"
7
8
jobs:
9
+ tests:
10
+ uses: ./.github/workflows/tests.yml
11
+ secrets: inherit
12
+
13
release:
14
+ needs: tests
15
runs-on: ubuntu-20.04
16
17
steps:
18
- name: Checkout code
19
uses: actions/checkout@v4
20
- - name: Run Tests Workflow
- uses: ./.github/workflows/tests.yml
-
21
- name: Set up Python
22
uses: actions/setup-python@v5
23
with:
.github/workflows/tests.yaml
@@ -1,9 +1,10 @@
1
name: tests
2
3
on:
4
- - push
5
- - pull_request
- - workflow_call
+ push:
+ pull_request:
+ workflow_call:
+ workflow_dispatch:
tests:
0 commit comments