remove seeding for golang 1.20+ #45
This file contains hidden or 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
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Golang | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '^1.21.0' | |
| - run: go version | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v5 | |
| - name: install dependencies | |
| run: go mod download | |
| - name: run test | |
| run: go test -race -coverprofile=coverage.txt -covermode=atomic | |
| - name: upload coverage | |
| run: bash <(curl -s https://codecov.io/bash) |