Skip to content

Update packages

Update packages #18

Workflow file for this run

name: Test and Coverage
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.19','1.20','1.21','1.22', '1.23' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run test
run: go test -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}