Skip to content

Commit

Permalink
fix continue on error logic
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewShf committed Jul 15, 2022
1 parent a874f1a commit a2ae300
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,37 +40,37 @@ jobs:
./gradlew ImmutabilityTypecheckTest
- name: PICO Typecheck AllSystems Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityTypecheckBaseAllSystemsTest
- name: PICO Typecheck Extended Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityTypecheckExtendedTest
- name: PICO Inference Initial Typecheck Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityInferenceInitialTypecheckTest
- name: PICO Inference Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityInferenceTest
- name: Glacier TypeCheck Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityTypecheckGlacierTest
- name: PICO ReIm Inference Test
if: ${{ steps.build.conclusion == 'success' }}
if: ${{ always() }}
run: |
./.ci-prepare.sh
./gradlew ImmutabilityReImInferenceTest

0 comments on commit a2ae300

Please sign in to comment.