Skip to content

add draft KuzminKutuzov #24

add draft KuzminKutuzov

add draft KuzminKutuzov #24

Workflow file for this run

name: CI lite
on:
pull_request:
branches:
- v2.0
paths:
- .github/workflows/devCI.yml
- src/**
- test/**
push:
branches:
- v2.0
paths:
- .github/workflows/devCI.yml
- src/**
- test/**
jobs:
devtest:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
arch: x64
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}