Skip to content

fix(deps): update module github.com/golang-migrate/migrate/v4 to v4.18.1 #77

fix(deps): update module github.com/golang-migrate/migrate/v4 to v4.18.1

fix(deps): update module github.com/golang-migrate/migrate/v4 to v4.18.1 #77

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.x
check-latest: true
- name: Test
run: CGO_ENABLED=1 go test -race ./...
coverage:
runs-on: ubuntu-latest
name: Coverage Report
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.x
check-latest: true
- name: Test
run: |
CGO_ENABLED=1 go run gotest.tools/[email protected] --junitfile test.xml --format testname -- -coverprofile coverage.txt -race ./...
go run github.com/boumenot/[email protected] -ignore-gen-files -by-files < coverage.txt > coverage.xml
- name: Code Coverage Summary Report
uses: irongut/[email protected]
with:
filename: coverage.xml
badge: true
fail_below_min: false
format: markdown
hide_branch_rate: true
hide_complexity: true
indicators: true
output: both
thresholds: '50 75'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md