Skip to content

Add validation rules for task execution fields (#112) #435

Add validation rules for task execution fields (#112)

Add validation rules for task execution fields (#112) #435

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ">=1.22.0"
cache: true
- run: go generate -v ./...
- run: go vet -v ./...
- run: go install golang.org/x/tools/cmd/goimports@latest
- run: goimports -v -w . && git diff --exit-code
- run: go build -v ./...
- run: go test -v ./...