Skip to content

Workflow file for this run

name: Run ForwardDiffChainRules.jl tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
# Don't cancel in-progress jobs if any matrix job fails
fail-fast: false
matrix:
julia-version: ['1'] # "1" automatically expands to the latest stable 1.x release of Julia
julia-arch: [x64]
os: [ubuntu-latest, windows-latest]
experimental: [false]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repository
uses: actions/checkout@v2
# Set up Julia
- name: "Set up Julia"
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
# Build ForwardDiffChainRules.jl package
- name: "Build package"
uses: julia-actions/julia-buildpkg@latest
# Run the tests
- name: "Run tests"
uses: julia-actions/julia-runtest@v1
# Preprocess Coverage
- name: "Preprocess Coverage"
uses: julia-actions/julia-processcoverage@v1
# Run codecov
- name: "Run CodeCov"
uses: codecov/codecov-action@v1
with:
file: lcov.info