mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
* use go 1.16 * use ^ to allow latest minor/patch version available Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
29 lines
663 B
YAML
29 lines
663 B
YAML
name: Go Coverage
|
|
on: [pull_request]
|
|
jobs:
|
|
test:
|
|
name: Coverage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '^1.16'
|
|
id: go
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
- name: Test With Coverage
|
|
run: |
|
|
for d in request core coremain plugin test; do \
|
|
( cd $d; go test -coverprofile=cover.out -covermode=atomic -race ./...; [ -f cover.out ] && cat cover.out >> ../coverage.txt ); \
|
|
done
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v2.0.2
|