We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d3132 commit a6969e3Copy full SHA for a6969e3
.github/workflows/release.yaml
@@ -7,20 +7,17 @@ on:
7
8
jobs:
9
test:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: actions/checkout@v4
13
- - uses: ./.github/workflows/unittest.yml
+ uses: ./.github/workflows/unittest.yml
14
15
release:
16
needs: test
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
20
- - name: Set up Python 3.7
+ - name: Set up Python 3.12
21
uses: actions/setup-python@v5
22
with:
23
- python-version: 3.7
+ python-version: "3.12"
24
- name: Install hatch
25
run: pip install hatch
26
- name: Build
.github/workflows/unittest.yml
@@ -6,6 +6,7 @@ on:
6
- master
pull_request:
workflow_dispatch:
+ workflow_call:
build:
0 commit comments