1
0
mirror of https://gitea.com/gitea/act synced 2026-05-01 01:27:48 +02:00

Enhance CI pipeline

This commit is contained in:
Nicolas
2026-04-19 19:13:25 +00:00
parent f923badec7
commit 15fc423f9c

View File

@@ -12,7 +12,11 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: vet checks
run: go vet -v ./...
- name: build
run: go build -v ./...
- name: Check formatting
run: make format-check
- name: Build
run: make build
- name: Lint
run: make lint
- name: Test
run: make test