Skip to content

Commit

Permalink
avoid parallel execution
Browse files Browse the repository at this point in the history
  • Loading branch information
btschwertfeger committed Jan 26, 2024
1 parent 55c1b96 commit 01309b8
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,11 @@ jobs:
if: |
(success() && github.actor == 'btschwertfeger')
&& (github.event_name == 'push' || github.event_name == 'release')
needs: [Pre-Commit]
needs:
- Test-Spot-Public
- Test-Spot-Private
- Test-Futures-Public
- Test-Futures-Private
uses: ./.github/workflows/_codecov.yaml
with:
os: "ubuntu-latest"
Expand All @@ -187,10 +191,7 @@ jobs:
- Build
- Build-Doc
- CodeQL
- Test-Spot-Public
- Test-Spot-Private
- Test-Futures-Public
- Test-Futures-Private
- CodeCov
name: Upload development version to Test PyPI
uses: ./.github/workflows/_pypi_publish.yaml
with:
Expand All @@ -210,10 +211,7 @@ jobs:
- Build
- Build-Doc
- CodeQL
- Test-Spot-Public
- Test-Spot-Private
- Test-Futures-Public
- Test-Futures-Private
- CodeCov
name: Upload release to PyPI
uses: ./.github/workflows/_pypi_publish.yaml
with:
Expand Down

0 comments on commit 01309b8

Please sign in to comment.