Skip to content
This repository was archived by the owner on Jul 4, 2026. It is now read-only.

refactor(epoch): project-wide code-style and simplify cleanup #159

refactor(epoch): project-wide code-style and simplify cleanup

refactor(epoch): project-wide code-style and simplify cleanup #159

Workflow file for this run

name: lint
on:
push:
tags:
- '!v*'
branches:
- '*'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Download dependencies
run: go mod download
- name: Lint
run: make lint
- name: Check formatting
run: make fmt-check