Skip to content

Commit

Permalink
Update build-ubuntu.yml
Browse files Browse the repository at this point in the history
A more serial job routing approach.
  • Loading branch information
razterizer authored Sep 20, 2024
1 parent 4025adf commit 276c5ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ jobs:
continue-on-error: false # Ensure errors are not bypassed

build-unit-tests-ubuntu:
needs: build-ubuntu
runs-on: ubuntu-latest

steps:
- name: test
run: ls

unit-tests-ubuntu:
needs: [build-ubuntu, build-unit-tests-ubuntu]
needs: build-unit-tests-ubuntu
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 276c5ac

Please sign in to comment.