Skip to content

Added Li2019 preconditioner to the library #166

Added Li2019 preconditioner to the library

Added Li2019 preconditioner to the library #166

Workflow file for this run

# Workflow based on: https://github.com/julia-actions/julia-runtest
# and https://github.com/davidanthoff/StringBuilders.jl/blob/master/.github/workflows/jlpkgbutler-ci-pr-workflow.yml
name: Run CI
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.7]
julia-arch: [x64]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@master
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}