diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a93f319ce..dc264a3ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,14 +13,14 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} + continue-on-error: ${{ matrix.allow_failure }} strategy: fail-fast: false matrix: version: + - 'nightly' - '1' - '1.6' - - 'nightly' os: - ubuntu-latest - macos-latest @@ -28,12 +28,12 @@ jobs: arch: - x64 include: + - version: 'nightly' + allow_failure: true - version: '1' - experimental: false + allow_failure: false - version: '1.6' - experimental: false - - version: 'nightly' - experimental: true + allow_failure: false steps: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1