Skip to content

Merge pull request #112 from gaurav-arya/ag-array #109

Merge pull request #112 from gaurav-arya/ag-array

Merge pull request #112 from gaurav-arya/ag-array #109

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project:
- '.'
- lib/DAEProblemLibrary
- lib/DDEProblemLibrary
- lib/JumpProblemLibrary
- lib/ODEProblemLibrary
- lib/SDEProblemLibrary
- lib/BVProblemLibrary
version:
- '1'
- '1.6'
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
with:
project: ${{ matrix.project }}
- uses: julia-actions/julia-runtest@v1
with:
project: ${{ matrix.project }}
- uses: julia-actions/julia-processcoverage@v1
with:
directories: ${{ matrix.project }}/src
- uses: codecov/codecov-action@v3
with:
files: lcov.info