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

Upgrade CI #309

Merged
merged 1 commit into from
Jun 24, 2024
Merged
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
Upgrade CI
  • Loading branch information
jakobnissen committed Jun 24, 2024
commit ef7335af49f7aba29e8ce1aad609bfb4dd636c1c
28 changes: 19 additions & 9 deletions .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,43 @@ jobs:
fail-fast: false
matrix:
julia-version:
- '1.5' # Minimally supported version of Julia.
- '1'
julia-arch: [x86]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]
experimental: [false]
include:
# Include nightly, but experimental, so it's allowed to fail without
# failing CI.
- julia-version: nightly
julia-arch: x86
os: ubuntu-latest
experimental: true
- julia-version: 1
fail_ci_if_error: false
# Windows is extremely slow on 1.6, so we skip this combination,
# since it increases CI time by 5x
- julia-version: '1.7'
os: windows-latest
experimental: false
# Oldest supported version
- julia-version: '1.5'
os: ubuntu-latest
experimental: false
# MacOS Aarch64 reached Tier1 support of Julia in version 1.9
- julia-version: '1.9'
os: macOS-latest
experimental: false

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Julia
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Run Tests
uses: julia-actions/julia-runtest@latest
- name: Create CodeCov
uses: julia-actions/julia-processcoverage@v1
uses: julia-actions/julia-processcoverage@latest
- name: Upload CodeCov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
file: ./lcov.info
flags: unittests
Expand Down
Loading