Skip to content

Commit

Permalink
chore: allow tests to run concurrently with build
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellAcoustics committed Nov 5, 2024
1 parent b2e6a55 commit a47c8ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,17 @@ jobs:
uv build
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/

tests-pass:
needs: [setup_and_build, details]
needs: [details]
uses: ./.github/workflows/test.yml

tutorial-tests-pass:
needs: [setup_and_build, details]
needs: [details]
uses: ./.github/workflows/test-tutorials.yml

pypi_publish:
Expand All @@ -105,7 +105,7 @@ jobs:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -121,12 +121,12 @@ jobs:
contents: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "soundscapy"
version = "0.7.5-a7"
version = "0.7.5-rc1"
description = "A python library for analysing and visualising soundscape assessments."
authors = [
{ name = "Andrew Mitchell", email = "[email protected]" }
Expand Down

0 comments on commit a47c8ca

Please sign in to comment.