Skip to content

Bump Jimver/cuda-toolkit from 0.2.16 to 0.2.17 #575

Bump Jimver/cuda-toolkit from 0.2.16 to 0.2.17

Bump Jimver/cuda-toolkit from 0.2.16 to 0.2.17 #575

Workflow file for this run

name: Coveralls
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up
run: sudo apt-get install -y libopenblas-dev liblapack-dev lcov
- name: Make
run: make test COVERAGE=1
- name: Run tests
run: out/run_tests_direct && out/run_tests_indirect
- name: Process coverage
uses: imciner2/run-lcov@v1
with:
input_directory: '${{ runner.workspace }}'
exclude: '"$GITHUB_WORKSPACE/test/*" "$GITHUB_WORKSPACE/linsys/external/*" "/usr/include/x86_64-linux-gnu/bits/*"'
output_file: '${{ runner.workspace }}/coverage.info'
- name: Upload coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: '${{ runner.workspace }}/coverage.info'