Skip to content

pick-to-staging: Properly sort staging/* refs to get latest branch #429

pick-to-staging: Properly sort staging/* refs to get latest branch

pick-to-staging: Properly sort staging/* refs to get latest branch #429

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go fmt
run: test -z $(gofmt -l .)
- name: go vet
run: go vet ./...
- name: golint
run: go install golang.org/x/lint/golint@latest && golint -set_exit_status ./...
- name: go test
run: go test -timeout 10s -race ./...