mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
* chore: Init AGENTS.md Signed-off-by: James Hillyerd <james@hillyerd.com> * chore: Central go-version for GitHub actions Signed-off-by: James Hillyerd <james@hillyerd.com> --------- Signed-off-by: James Hillyerd <james@hillyerd.com>
18 lines
327 B
YAML
18 lines
327 B
YAML
name: Lint Go Code
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
golangci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: '.go-version'
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v9
|
|
with:
|
|
version: latest
|