Skip to content

chore: split test and tag workflows #1

chore: split test and tag workflows

chore: split test and tag workflows #1

name: "Tests - ReservoirCellularAutomata"

Check failure on line 1 in .github/workflows/TestsReservoirCellularAutomata.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/TestsReservoirCellularAutomata.yml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
pull_request:
branches:
- master
paths:
- "lib/ReservoirCellularAutomata/**"
- ".github/workflows/TestsReservoirCellularAutomata.yml"
paths-ignore:
- 'docs/**'
push:
branches:
- master
paths-ignore:
- 'docs/**'
schedule:
- cron: '33 1 * * 4'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
- "pre"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
secrets: "inherit"