Skip to content

test: fix expected value #7

test: fix expected value

test: fix expected value #7

Workflow file for this run

name: test
on:
push:
paths:
- "**.go"
permissions:
contents: write
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: run tests
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
- name: generate coverage badge
uses: vladopajic/go-test-coverage@v2
with:
profile: cover.out
local-prefix: github.com/gkits/sqlnull
threshold-total: 80
git-token: ${{ github.ref_name == 'main' && secrets.GITHUB_TOKEN || '' }}
git-branch: badges