Skip to content

chore: configure dependabot #5

chore: configure dependabot

chore: configure dependabot #5

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.18
- run: |
go test -v ./... -cover -coverprofile=.coverage.txt
go tool cover -func=.coverage.txt