Skip to content

allow port to be configured with direct assignment #72

allow port to be configured with direct assignment

allow port to be configured with direct assignment #72

Workflow file for this run

name: golangci-lint
on:
# For now, only lint pull requests, not the main branches.
pull_request:
workflow_dispatch:
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@e60da84bfae8c7920a47be973d75e15710aa8bd7 #v6.3.0
with:
version: v1.63.4
# Show only new issues if it's a pull request.
only-new-issues: true