diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 75b89a7..9c8862f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -6,6 +6,17 @@ on: - main tags: '*' jobs: + finalize: + timeout-minutes: 10 + needs: [test] + if: always() + runs-on: ubuntu-latest + steps: + - run: | + echo test: ${{ needs.test.result }} + - run: exit 1 + if: | + (needs.test.result != 'success') test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} @@ -13,9 +24,10 @@ jobs: fail-fast: false matrix: version: - - '1.0' + - 'min' + - 'lts' - '1' - - 'nightly' + - 'pre' os: - ubuntu-latest - macOS-latest