Skip to content

Splitting up BoundaryValueDiffEq #1

Splitting up BoundaryValueDiffEq

Splitting up BoundaryValueDiffEq #1

Workflow file for this run

name: "Tests"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/Tests.yml

Invalid workflow file

Cannot define both `uses` and `steps` at the same time for the following jobs: tests
on:
pull_request:
branches:
- master
- 'release-'
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:
RETESTITEMS_NWORKERS: 4
RETESTITEMS_NWORKER_THREADS: 2
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
group:
- "MIRK"
- "MISC"
- "SHOOTING"
- "FIRK(EXPANDED)"
- "FIRK(NESTED)"
- "WRAPPERS"
- "BoundaryValueDiffEqFIRK"
- "BoundaryValueDiffEqMIRK"
- "BoundaryValueDiffEqShooting"
steps:
# Explicitly develop the libraries first before running the tests for now.
# This is necessary since the tests are likely to fail otherwise, given that all
# the libs haven't been registered yet.
- name: "Develop the libraries since they haven't been registered yet"
run: |
julia --project=. -e '
using Pkg;
Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
'
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: "${{ matrix.group }}"
secrets: "inherit"