update
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Grentenrg 2026-02-27 23:01:05 +01:00
parent 5ab21b46e7
commit f7d31967a4

View file

@ -1,6 +1,16 @@
on: [push] on: [push]
jobs: jobs:
test: test:
runs-on: docker runs-on: golang:1.26
steps: steps:
- run: echo All good! - run: go build
- run: go test -v ./...
- run: go vet ./...
- run: go fmt ./...
- run: go mod tidy
- run: go mod verify
- run: go mod download
- run: go mod graph
- run: go mod why
- run: go mod vendor
- run: go mod verify