Skip to content

layered makefiles

layered makefiles #479

Workflow file for this run

name: Test and coverage
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
with:
go-version: '1.18'
- name: Checkout peers
run: make ci_checkout_peers CLONE_DEPTH=2
- name: Run coverage
run: make calculate_coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
verbose: true
flags: go_tests
fail_ci_if_error: true