Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

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: "Tests"
on:
pull_request:
branches:
- main
- 'release-'
paths-ignore:
- 'docs/**'
push:
branches:
- main
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:
DATADEPS_ALWAYS_ACCEPT: true
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
os:
- "ubuntu-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
secrets: "inherit"