Skip to content

Merge pull request #2 from MartyHub/dependabot/github_actions/actions… #6

Merge pull request #2 from MartyHub/dependabot/github_actions/actions…

Merge pull request #2 from MartyHub/dependabot/github_actions/actions… #6

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
- name: Test
run: go test -race -timeout 30s ./...