Get mod files from neurodamus-models repo #280
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: coverage-test | |
on: | |
push: | |
jobs: | |
build: | |
name: coverage-test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Fetch repository | |
run: git fetch --prune --unshallow | |
- name: Get submodules | |
run: git submodule update --init --force --recursive | |
- name: Install packages | |
run: sudo apt-get install build-essential libhdf5-dev hdf5-tools lcov | |
- name: Build and run unittests | |
run: ci/coverage_test.sh | |
- name: Upload Coverage to Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: build-coverage/coverage.info.cleaned |