Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Fix CI

Fix CI #87

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
arch:
- x64
version:
- '1.7'
- 'nightly'
os:
- macOS-latest
- ubuntu-latest
- windows-latest
# NOTE: Waiting for upstream Aarch64 support.
# include:
# - arch: aarch64
# version: 'nightly'
# os: macOS-latest
# - arch: aarch64
# version: 'nightly'
# os: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}