Skip to content

Commit

Permalink
CI: Some details on runner from PkgTemplates.
Browse files Browse the repository at this point in the history
  • Loading branch information
RomeoV committed Dec 16, 2024
1 parent 18eb8eb commit 7b8674d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,21 @@ on:
push:
branches:
- master
concurrency:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
- master
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ubuntu-latest
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
Expand All @@ -25,7 +30,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
Expand Down

0 comments on commit 7b8674d

Please sign in to comment.