Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Expanded testing #75

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,37 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1'
- 'nightly'
- lts
- '1.6'
os:
- ubuntu-latest
- macOS-latest
- macOS-latest # aarch64 runner
- macOS-13 # x64 runner
- windows-latest
arch:
- x64
- aarch64
- x86
exclude:
- os: macOS-13
arch: aarch64
- os: macOS-latest
arch: x64
- os: macOS-latest
version: '1.6'
- os: macOS-latest
arch: x86
- os: macOS-13
arch: x86
- os: ubuntu-latest
arch: aarch64
- os: windows-latest
arch: aarch64
include:
- os: ubuntu-latest
arch: x64
version: nightly
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: julia-actions/setup-julia@v2
with:
version: '1'
version: '1.10'
- uses: actions/checkout@v4
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-invalidations@v1
Expand Down
Loading