Skip to content

Trigger CI

Trigger CI #66

Workflow file for this run

name: Lint and Test
on: pull_request
permissions: {}
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
persist-credentials: false
- name: Set-up Go
uses: actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
with:
go-version: ^1.22
cache: true
- name: Format
run: make check-fmt
- name: Lint
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 #v6.5.0
with:
version: v1.64.6
args: --config ./golangci.yml
- name: Test
run: make test