Skip to content

二重転送バグを修正 #5

二重転送バグを修正

二重転送バグを修正 #5

Workflow file for this run

name: lint
on:
pull_request:
paths:
- '**.go'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-slim
timeout-minutes: 5
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: stable
- name: Run format check
run: make fmt-check
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest