README heading #124
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: "`make build`" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: satackey/action-docker-layer-caching@v0.0.11 | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: docker-image-version-1-{hash} | |
- name: Complete Makefile build | |
run: make build | |
- name: Code coverage report | |
run: make tests-coverage | |
- name: Send coverage report to codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: clover.xml | |
verbose: true |