Allow steps to run even if previous ones failed

This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-12 09:33:57 +02:00
parent fefaa6e434
commit ac2fbc86de
1 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,7 @@ jobs:
syntaxcheck:
needs: [build, unittests]
if: always()
name: Syntax checking (fine typecheck home)
runs-on: ubuntu-latest
steps:
@ -96,6 +97,7 @@ jobs:
typecheck:
needs: [build, unittests]
name: Typechecking tests
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -164,6 +166,7 @@ jobs:
emit:
needs: [build, unittests]
name: Emit tests
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2