Update First(n int) to read no more data than necessary (#199) #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://github.com/mvdan/github-actions-golang | |
on: [push, pull_request, workflow_dispatch] | |
name: Tests | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: ['stable', 'oldstable'] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v3 | |
- run: go test ./... | |
govulncheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: golang/govulncheck-action@v1 | |
gocritic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
- uses: actions/checkout@v3 | |
- run: | | |
go install github.com/go-critic/go-critic/cmd/gocritic@latest | |
gocritic check . |