Skip to content

Commit

Permalink
Merge pull request #178 from JuliaStats/dw/ci
Browse files Browse the repository at this point in the history
Test earliest supported Julia version and prereleases
  • Loading branch information
ViralBShah authored Oct 22, 2024
2 parents d10d6a3 + 8086523 commit d49c2bf
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,26 @@ on:
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1' # automatically expands to the latest stable 1.x release of Julia
- 'lts'
- 'min' # earliest supported version of Julia
- '1' # latest v1 version of Julia
- 'lts' # latest LTS build of Julia
- 'pre' # latest prerelease build (RCs, betas, and alphas) of Julia
os:
- ubuntu-latest
- macOS-13
- macOS-latest
- windows-latest
arch:
- x64
include:
- os: macOS-latest
arch: aarch64
version: '1'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
include-all-prereleases: true
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v2
- run: julia --color=yes .ci/test_and_change_uuid.jl
- uses: julia-actions/julia-buildpkg@v1
Expand Down

0 comments on commit d49c2bf

Please sign in to comment.