Skip to content

chore(layout): Remove handler and simplify code structure #196

chore(layout): Remove handler and simplify code structure

chore(layout): Remove handler and simplify code structure #196

Workflow file for this run

name: presubmit
on:
pull_request:
branches:
- dev
env:
GO_VERSION: 1.24.4
LINTER_VERSION: v1.64.8
GOLINT_ARGS: -v --allow-parallel-runners --timeout=10m --disable errcheck
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout ⤵️
uses: actions/checkout@v4
- name: Setup Go 🛠️
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Test 🧪
run: |
go test -race -mod=readonly ./...
- name: Lint 🪥
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.LINTER_VERSION }}
working-directory: ./
args: ${{ env.GOLINT_ARGS }}