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 1098ae8 commit b7d5e0dCopy full SHA for b7d5e0d
.github/workflows/release.yml
@@ -26,8 +26,13 @@ env:
26
PYTHON_VERSION: "3.13"
27
28
jobs:
29
+ test:
30
+ name: Run Tests
31
+ uses: ./.github/workflows/test.yml
32
+
33
create-release:
34
name: Create Release
35
+ needs: test
36
runs-on: ubuntu-latest
37
outputs:
38
version: ${{ inputs.version }}
.github/workflows/test.yml
@@ -10,6 +10,7 @@ on:
10
pull_request:
11
branches:
12
- main
13
+ workflow_call:
14
15
16
lint:
0 commit comments