Skip to content

Merge pull request #7 from moshevayner/dependabot/github_actions/gola… #22

Merge pull request #7 from moshevayner/dependabot/github_actions/gola…

Merge pull request #7 from moshevayner/dependabot/github_actions/gola… #22

Workflow file for this run

name: CI (Tests and Lint)
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: go test
run: go test -mod=vendor --timeout=20m ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6.2.0