Skip to content

Bump golangci/golangci-lint-action from 4 to 5 #106

Bump golangci/golangci-lint-action from 4 to 5

Bump golangci/golangci-lint-action from 4 to 5 #106

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.18
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...