feat: updated pipelines
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 11s
Publish / Check GoReleaser config (pull_request) Has been skipped
Publish / Publish provider (pull_request) Has been skipped
CI Workflow / CI (pull_request) Failing after 3m53s
CI Workflow / Code coverage report (pull_request) Has been skipped

This commit is contained in:
Marcel S. Henselin 2026-01-29 11:22:00 +01:00
parent 2733834fc9
commit c24eaf2fc5
2 changed files with 125 additions and 1 deletions

View file

@ -33,6 +33,17 @@ jobs:
- name: "Ensure docs are up-to-date"
if: ${{ github.event_name == 'pull_request' }}
run: ./scripts/check-docs.sh
continue-on-error: true
- name: "Run go mod tidy"
if: ${{ github.event_name == 'pull_request' }}
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.7
args: --config=golang-ci.yaml --allow-parallel-runners --timeout=5m
- name: Lint
run: make lint
@ -40,7 +51,6 @@ jobs:
- name: Test
run: make test
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with: