Skip to content

Commit

Permalink
Run CI against latest Julia release and x86 linux (#126)
Browse files Browse the repository at this point in the history
* Run CI against latest Julia release

* Run CI against x86 linux

* Update versions of GitHub actions

* Add julia-actions/cache step
  • Loading branch information
omus authored Feb 8, 2024
1 parent 9a84397 commit ddfc6a0
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,33 @@ jobs:
strategy:
matrix:
version:
- '1.0'
- '1.5'
- '1.0' # Oldest supported version
- '1' # Latest release
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
exclude:
# Remove some configurations from the build matrix to reduce CI time.
# See https://github.com/marketplace/actions/setup-julia-environment
- {os: 'macOS-latest', arch: 'x86'}
- {os: 'windows-latest', arch: 'x86'}
- os: macOS-latest
arch: x86
- os: windows-latest
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info
files: lcov.info

0 comments on commit ddfc6a0

Please sign in to comment.