Skip to content

ci: standardize workflows using SciML's reusable workflows #1

ci: standardize workflows using SciML's reusable workflows

ci: standardize workflows using SciML's reusable workflows #1

Workflow file for this run

name: "Run Tests"
on:
pull_request:
branches:
- master
paths-ignore:
- 'docs/**'
push:
branches:
- master
paths-ignore:
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
env:
JULIA_NUM_THREADS: 11
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- '<1.10.3 || >=1.10.4'
- '1.6'
group:
- 'Core'
- 'ModelingToolkitSIExt'
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: "${{ matrix.group }}"
julia-version: "${{ matrix.version }}"
secrets: "inherit"