Skip to content

Release v0.2.1

Release v0.2.1 #47

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
env:
# Pkg.test otherwise precompiles the entire transitive SciML environment.
JULIA_PKG_PRECOMPILE_AUTO: "0"
strategy:
fail-fast: false
matrix:
include:
- version: '1.10'
os: ubuntu-latest
arch: x64
- version: '1.10'
os: windows-latest
arch: x64
- version: '1'
os: ubuntu-latest
arch: x64
- version: '1'
os: windows-latest
arch: x64
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
if: matrix.version != '1' || matrix.os != 'windows-latest'
with:
coverage: false
- uses: julia-actions/julia-runtest@v1
if: matrix.version == '1' && matrix.os == 'windows-latest'
with:
coverage: false
env:
# Parallel precompilation can stall on the large SciML dependency graph.
JULIA_NUM_PRECOMPILE_TASKS: 1