-
-
Notifications
You must be signed in to change notification settings - Fork 34
37 lines (34 loc) · 886 Bytes
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Tests"
on:
pull_request:
branches:
- master
push:
branches:
- master
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"
project:
- '.'
- 'lib/DAEProblemLibrary'
- 'lib/DDEProblemLibrary'
- 'lib/JumpProblemLibrary'
- 'lib/ODEProblemLibrary'
- 'lib/SDEProblemLibrary'
- 'lib/BVPProblemLibrary'
- 'lib/NonlinearProblemLibrary'
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
project: "${{ matrix.project }}"
secrets: "inherit"