You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
275 B
YAML
18 lines
275 B
YAML
6 months ago
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: CI Test Pipeline
|
||
|
|
||
|
steps:
|
||
|
- name: Go Unit Tests and Linters
|
||
|
image: golang:1.22
|
||
|
commands:
|
||
|
- go test ./...
|
||
|
- go vet ./...
|
||
|
- bash -xc './scripts/check_go_fmt.sh
|
||
|
group: test-lint
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- pull_request
|
||
|
- push
|