Skip to content

Bump github.com/lestrrat-go/option from 1.0.0 to 1.0.1 (#21) #125

Bump github.com/lestrrat-go/option from 1.0.0 to 1.0.1 (#21)

Bump github.com/lestrrat-go/option from 1.0.0 to 1.0.1 (#21) #125

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.21', '1.20' ]
name: Go ${{ matrix.go }} test
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check documentation generator
run: |
find . -name '*.md' | xargs env AUTODOC_DRYRUN=1 perl tools/autodoc.pl
- name: Install Go stable version
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v -race -coverprofile=coverage.out -coverpkg=./... ./...
- name: Upload code coverage to codecov
if: matrix.go == '1.19'
uses: codecov/codecov-action@v3
with:
file: ./coverage.out