Skip to content

try cache ci action with compiled #170

try cache ci action with compiled

try cache ci action with compiled #170

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1', '^1.10.0-rc1', 'nightly']
os: [ubuntu-latest, windows-latest, macOS-latest]
arch: [x64, x86]
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@88474432aeb3dced3efe31c3d42a3d488e06a10b
with:
cache-compiled: true
# cache-name: ${{ matrix.julia-version }}-${{ matrix.arch }}
- run: julia --trace-compile=stderr --project -e "import Pkg; Pkg.test(coverage=true)"
env:
JULIA_DEBUG: loading,API
# - uses: julia-actions/julia-runtest@v1
# with:
# julia-args: --trace-compile=stderr
# env:
# JULIA_DEBUG: loading,API
- uses: julia-actions/julia-processcoverage@v1