123456789101112131415161718192021222324252627282930313233 |
- 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
|