Skip to content

Commit d49c2bf

Browse files
authored
Merge pull request #178 from JuliaStats/dw/ci
Test earliest supported Julia version and prereleases
2 parents d10d6a3 + 8086523 commit d49c2bf

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,26 @@ on:
66
pull_request:
77
jobs:
88
test:
9-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
9+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
1414
version:
15-
- '1' # automatically expands to the latest stable 1.x release of Julia
16-
- 'lts'
15+
- 'min' # earliest supported version of Julia
16+
- '1' # latest v1 version of Julia
17+
- 'lts' # latest LTS build of Julia
18+
- 'pre' # latest prerelease build (RCs, betas, and alphas) of Julia
1719
os:
1820
- ubuntu-latest
19-
- macOS-13
21+
- macOS-latest
2022
- windows-latest
21-
arch:
22-
- x64
23-
include:
24-
- os: macOS-latest
25-
arch: aarch64
26-
version: '1'
2723
steps:
2824
- uses: actions/checkout@v4
2925
- uses: julia-actions/setup-julia@v2
3026
with:
3127
version: ${{ matrix.version }}
32-
include-all-prereleases: true
33-
arch: ${{ matrix.arch }}
28+
show-versioninfo: true
3429
- uses: julia-actions/cache@v2
3530
- run: julia --color=yes .ci/test_and_change_uuid.jl
3631
- uses: julia-actions/julia-buildpkg@v1

0 commit comments

Comments
 (0)