ci: makefile commands to test, lint and format
Some checks failed
CI / test (push) Waiting to run
Release / release (push) Waiting to run
ci/woodpecker/push/ci Pipeline failed

This commit is contained in:
Felipe M 2025-02-21 09:59:59 +01:00
parent ba23c2816c
commit f9e69546fb
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8
3 changed files with 68 additions and 3 deletions

31
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,31 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Format
run: |
make format
git diff --exit-code
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.56
args: --timeout=5m
- name: Test
run: make test

24
.woodpecker/ci.yml Normal file
View file

@ -0,0 +1,24 @@
when:
event:
- push
- pull_request
branch:
- main
steps:
format:
image: golang:1.24
commands:
- make format
- git diff --exit-code # Fail if files were changed
lint:
image: golang:1.24
commands:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.5
- make lint
test:
image: golang:1.24
commands:
- make test

View file

@ -5,6 +5,8 @@ SOURCE_FILES ?=./...
TEST_OPTIONS ?= -v -failfast -race -bench=. -benchtime=100000x -cover -coverprofile=coverage.out TEST_OPTIONS ?= -v -failfast -race -bench=. -benchtime=100000x -cover -coverprofile=coverage.out
TEST_TIMEOUT ?=1m TEST_TIMEOUT ?=1m
GOLANGCI_LINT_VERSION ?= v1.64.5
CLEAN_OPTIONS ?=-modcache -testcache CLEAN_OPTIONS ?=-modcache -testcache
CGO_ENABLED := 0 CGO_ENABLED := 0
@ -78,13 +80,21 @@ run: ### Executes the project build locally
.PHONY: format .PHONY: format
format: ### Executes the formatting pipeline on the project format: ### Executes the formatting pipeline on the project
$(info: Make: Format) $(info: Make: Format)
@bash scripts/format.sh @go fmt ./...
@go mod tidy
.PHONY: ci-lint
ci-lint: ### Check the project for errors
$(info: Make: Lint)
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}
@golangci-lint run ./...
.PHONY: lint .PHONY: lint
lint: ### Check the project for errors lint: ### Check the project for errors
$(info: Make: Lint) $(info: Make: Lint)
@bash scripts/lint.sh @golangci-lint run ./...
.PHONY: test .PHONY: test
test: ### Runs the test suite test: ### Runs the test suite
@bash scripts/test.sh $(info: Make: Test)
@go test ${TEST_OPTIONS} -timeout=${TEST_TIMEOUT} ${SOURCE_FILES}