Skip to content

fix: unreachable yer #51 #186

fix: unreachable yer #51

fix: unreachable yer #51 #186

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -cover -coverprofile=coverage.txt -covermode=atomic ./...
- name: Cov
run: bash <(curl -s https://codecov.io/bash)