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

Add lint-timezone check to enforce time.Local = time.UTC #220

Add lint-timezone check to enforce time.Local = time.UTC

Add lint-timezone check to enforce time.Local = time.UTC #220

Workflow file for this run

---
name: "Pull Request"
on: pull_request
jobs:
test:
name: "Lint and test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Lint
run: make lint
- name: Test
run: make test