Skip to content

Commit

Permalink
fail never
Browse files Browse the repository at this point in the history
  • Loading branch information
zachgoncalves committed Aug 26, 2023
1 parent 20de062 commit 808cf7c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ on:

jobs:
test:
name: Test Unix
name: Run Operating System Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -49,13 +50,13 @@ jobs:
run: test "true" = "${{ steps.checkTag.outputs.exists }}"
- name: Result of notExist
if: always()
run: test "false" = "${{ steps.notExist.outputs.notExist }}"
run: test "false" = "${{ steps.notExist.outputs.exists }}"
- name: Result of externalRepoTagExists
if: always()
run: test "true" = "${{ steps.checkTag.outputs.externalRepoTagExists }}"
run: test "true" = "${{ steps.checkTag.externalRepoTagExists.exists }}"
- name: Result of externalRepoTagNotExists
if: always()
run: test "true" = "${{ steps.checkTag.outputs.externalRepoTagNotExists }}"
run: test "true" = "${{ steps.externalRepoTagNotExists.outputs.exists }}"
- name: Result of externalRepoNotExists
if: always()
run: test "true" = "${{ steps.checkTag.outputs.externalRepoNotExists }}"
run: test "true" = "${{ steps.externalRepoNotExists.outputs.exists }}"

0 comments on commit 808cf7c

Please sign in to comment.