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 5b1df64 commit 32751faCopy full SHA for 32751fa
.github/workflows/release.yml
@@ -10,9 +10,14 @@ on:
10
- v*.*.*
11
12
jobs:
13
+ test:
14
+ # Run test workflow before building and releasing
15
+ uses: ./.github/workflows/test.yml
16
+
17
build:
18
# Build the Python SDist and wheel, performs metadata and readme linting
19
name: Build and verify package
20
+ needs: [test]
21
runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v4
.github/workflows/test.yaml
@@ -18,6 +18,7 @@ on:
description: "Cache cutouts for all Python versions"
default: "false"
required: true
+ workflow_call:
# Cancel any in-progress runs when a new run is triggered
24
concurrency:
0 commit comments