Skip to content

Merge pull request #4 from chenchaoyi/dependabot/github_actions/softp… #6

Merge pull request #4 from chenchaoyi/dependabot/github_actions/softp…

Merge pull request #4 from chenchaoyi/dependabot/github_actions/softp… #6

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
test:
name: vet / test / build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: go vet
run: go vet ./...
- name: go test (race + cover)
run: go test -race -count=1 -cover ./...
- name: go build
run: go build ./...