Skip to content

Commit

Permalink
Make sure all tests need to pass for ci to pass, not just last
Browse files Browse the repository at this point in the history
  • Loading branch information
Laupetin committed Dec 14, 2023
1 parent aa5731e commit 150ad5e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
- name: Test
working-directory: ${{ github.workspace }}/build/lib/Release_x86/tests
run: |
./ObjCommonTests
./ObjLoadingTests
./ParserTests
./ZoneCodeGeneratorLibTests
./ObjCommonTests && \
./ObjLoadingTests && \
./ParserTests && \
./ZoneCodeGeneratorLibTests && \
./ZoneCommonTests
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -86,10 +86,10 @@ jobs:
- name: Test
working-directory: ${{ github.workspace }}/build/lib/Release_x86/tests
run: |
./ObjCommonTests
./ObjLoadingTests
./ParserTests
./ZoneCodeGeneratorLibTests
./ObjCommonTests && \
./ObjLoadingTests && \
./ParserTests && \
./ZoneCodeGeneratorLibTests && \
./ZoneCommonTests
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 150ad5e

Please sign in to comment.