Skip to content

fix De-duplication logic causes some sentinel error patterns to resul… #64

fix De-duplication logic causes some sentinel error patterns to resul…

fix De-duplication logic causes some sentinel error patterns to resul… #64

Workflow file for this run

name: Test library
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19"]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test
run: go test -covermode=atomic -coverprofile=coverage.out -v ./tests
- uses: codecov/codecov-action@v3
with:
files: ./coverage.out