Skip to content

Add NEWS.md documenting v5.0.0 breaking changes #238

Add NEWS.md documenting v5.0.0 breaking changes

Add NEWS.md documenting v5.0.0 breaking changes #238

Workflow file for this run

name: "Tests"
on:
push:
branches:
- master
paths-ignore:
- "docs/**"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
jobs:
test:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
os:
- "ubuntu-latest"
- "windows-latest"
- "macOS-13"
arch:
- "x64"
include:
- version: "1"
os: "macOS-latest"
arch: "aarch64"
- version: "lts"
os: "ubuntu-latest"
arch: "x64"
- version: "pre"
os: "ubuntu-latest"
arch: "x64"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: ${{ matrix.version }}
julia-arch: ${{ matrix.arch }}
os: ${{ matrix.os }}
secrets: inherit