Skip to content

Fix filter by arch on s390x #137

Fix filter by arch on s390x

Fix filter by arch on s390x #137

Workflow file for this run

name: golangci-lint
on:
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .go-version file
id: goversion
run: echo "version=$(cat .go-version)" >> $GITHUB_OUTPUT
- uses: actions/setup-go@v4
with:
go-version: "${{ steps.goversion.outputs.version }}"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --timeout=5m
# Ignore pre-existing issues.
only-new-issues: true