Compare commits

..

2 Commits

Author SHA1 Message Date
11f0cac1ef
chore(deps): update module github.com/asaskevich/govalidator to v11
Some checks failed
renovate/artifacts Artifact file update failure
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Failing after 5s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Failing after 9s
Markdown linter / markdown-lint (push) Successful in 4s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (pull_request) Failing after 8s
Markdown linter / markdown-lint (pull_request) Successful in 4s
Golang Tests / unittest (stable, ubuntu-latest-amd64) (pull_request) Failing after 14s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Failing after 22s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Failing after 45s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (pull_request) Failing after 24s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (pull_request) Failing after 41s
2025-06-01 11:45:09 +00:00
d6d69f12bc
chore(ci): add golangci-lint
Some checks failed
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Successful in 21s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Failing after 7s
Markdown linter / markdown-lint (push) Successful in 3s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Successful in 2m0s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Failing after 41s
2025-06-01 12:18:47 +02:00
2 changed files with 33 additions and 4 deletions

View File

@ -6,17 +6,19 @@ on:
push:
branches: [ '**' ]
tags-ignore: [ '**' ]
workflow_dispatch: {}
jobs:
unittest:
runs-on:
- ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ stable ]
os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ]
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5.5.0
with:
go-version: stable
go-version: ${{ matrix.go }}
- env:
GOPROXY: ${{ vars.GOPROXY }}
run: make test/unit

View File

@ -0,0 +1,27 @@
name: Golang CI lint
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
push:
branches: [ '**' ]
tags-ignore: [ '**' ]
permissions:
contents: read
jobs:
golangci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ stable ]
os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ]
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5.5.0
with:
go-version: ${{ matrix.go }}
- uses: golangci/golangci-lint-action@v8.0.0
with:
version: v2.1