test-ci/.forgejo/workflows/main.yaml
Grentenrg 5b0cbb23c1
Some checks failed
/ test (push) Failing after 20s
update
2026-02-27 23:12:08 +01:00

20 lines
439 B
YAML

on: [push]
jobs:
test:
runs-on: docker
container:
image: golang:1.26
steps:
- uses: actions/checkout@v4
- run: ls -la
- 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