Skip to content

maj:ci: attempt to sync coverage #99

maj:ci: attempt to sync coverage

maj:ci: attempt to sync coverage #99

Workflow file for this run

name: GoTest
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v1
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Generate coverage report
run: |
go test -shuffle=on -coverpkg github.com/burgesQ/webfmwk/... -covermode atomic -coverprofile cover.cov -v -race ./...
go tool cover -func cover.cov
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.cov
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
verbose: true