Skip to content

Bump actions/checkout from 2 to 4 #5

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #5

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@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: --timeout=5m
- name: go test
run: go test --timeout=10m ./...