You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
468 B
20 lines
468 B
name: checks
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
name: check and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: "go.mod"
|
|
- name: lint
|
|
run: go install golang.org/x/lint/golint@latest && golint ./...
|
|
- name: vet
|
|
run: go vet
|
|
- name: test
|
|
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
|