diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3b4c08f..fcf54d0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,8 +14,14 @@ on: - master jobs: test: - runs-on: ubuntu-latest + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + runs-on: ${{ matrix.os }} + timeout-minutes: 60 + permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created + actions: write + contents: read strategy: + fail-fast: false matrix: group: - Core @@ -25,7 +31,7 @@ jobs: - '1.10' steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} - uses: julia-actions/cache@v2