Skip to content

Merge pull request #12 from moshevayner/dependabot/github_actions/act… #35

Merge pull request #12 from moshevayner/dependabot/github_actions/act…

Merge pull request #12 from moshevayner/dependabot/github_actions/act… #35

Workflow file for this run

name: CI (Lint and Run Tests)
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
args: --timeout=5m
- name: go test
run: go test --timeout=10m ./...