Skip to content

feat(deps): bump github.com/go-git/go-git/v5 from 5.10.1 to 5.11.0 #278

feat(deps): bump github.com/go-git/go-git/v5 from 5.10.1 to 5.11.0

feat(deps): bump github.com/go-git/go-git/v5 from 5.10.1 to 5.11.0 #278

Workflow file for this run

name: coverage
on:
push:
branches:
- "main"
pull_request:
jobs:
coverage:
strategy:
matrix:
os: [ubuntu-latest] # TODO: add macos & windows
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1
- name: Test
run: |
# We collect coverage data from two sources,
# 1) unit tests 2) integration tests
#
# https://go.dev/testing/coverage/
# https://dustinspecker.com/posts/go-combined-unit-integration-code-coverage/
# https://github.com/golang/go/issues/51430#issuecomment-1344711300
mkdir -p coverage/unit
mkdir -p coverage/int
# Collect unit tests coverage
go test -failfast -race -timeout 5m -skip=^TestScript -cover ./... -args -test.gocoverdir=$PWD/coverage/unit
# Collect integration tests coverage
GOCOVERDIR=$PWD/coverage/int go test -failfast -race -timeout 5m -run=^TestScript ./...
# Convert coverage data to legacy textfmt format to upload
go tool covdata textfmt -i=coverage/unit,coverage/int -o=coverage.txt
- uses: codecov/codecov-action@v3
with:
file: ./coverage.txt