Skip to content

Update go.mod

Update go.mod #12

Workflow file for this run

name: unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go: [ '1.16.x', '1.17.x', '1.18.x' ]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: test
run: go test -coverprofile=c.out -covermode=atomic