Skip to content

Commit

Permalink
Change order of pipeline steps for coverage aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
tsjensen committed Dec 22, 2023
1 parent 661a5a2 commit 0fa9abe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/boxes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
TERM: xterm-color

jobs:
build:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -36,12 +36,12 @@ jobs:
- name: Run white-box tests
run: make utest

- name: Run sunny-day tests
run: make covtest-sunny

- name: Run black-box tests
run: make covtest

- name: Run sunny-day tests
run: make test-sunny

- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down Expand Up @@ -73,12 +73,12 @@ jobs:
- name: Run white-box tests
run: make utest

- name: Run sunny-day tests
run: make covtest-sunny

- name: Run black-box tests
run: make covtest

- name: Run sunny-day tests
run: make test-sunny

- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand All @@ -89,7 +89,7 @@ jobs:
parallel: true

finish:
needs: [build, build-macos]
needs: [build-linux, build-macos]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 0fa9abe

Please sign in to comment.