Skip to content

Merge pull request #220 from henrybear327/go/version #27

Merge pull request #220 from henrybear327/go/version

Merge pull request #220 from henrybear327/go/version #27

---
name: Static analysis
on: [push, pull_request]
permissions: read-all
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22.6
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59.1
args: --config tools/.golangci.yaml
- run: |
set -euo pipefail
make verify
- run: |
set -euo pipefail
make fmt
DIFF=$(git status --porcelain)
if [ -n "$DIFF" ]; then
echo "These files were modified:"
echo
echo "$DIFF"
echo
exit 1
fi