Skip to content

Merge pull request #108 from tdakkota/dependabot/go_modules/github.co… #188

Merge pull request #108 from tdakkota/dependabot/go_modules/github.co…

Merge pull request #108 from tdakkota/dependabot/go_modules/github.co… #188

Workflow file for this run

name: Coverage
on:
push:
tags:
- v*
branches:
- master
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Download dependencies
run: go mod download && go mod tidy
- name: Run tests with coverage
run: go test -v -coverpkg=./... -coverprofile=profile.out ./...
- name: Extract cover profile
run: go tool cover -func profile.out
- name: Upload artifact
uses: actions/[email protected]
with:
name: coverage
path: profile.out
if-no-files-found: error
retention-days: 1
upload:
runs-on: ubuntu-latest
needs:
- test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download artifact
uses: actions/[email protected]
with:
name: coverage
- name: Send coverage
uses: codecov/codecov-action@v5
with:
file: profile.out