Skip to content

Commit

Permalink
ci: fix test call in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Dec 16, 2024
1 parent 76d3132 commit a6969e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,17 @@ on:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/unittest.yml
uses: ./.github/workflows/unittest.yml

release:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: "3.12"
- name: Install hatch
run: pip install hatch
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- master
pull_request:
workflow_dispatch:
workflow_call:

jobs:
build:
Expand Down

0 comments on commit a6969e3

Please sign in to comment.