Skip to content

feat: policy command family (/v1/policy + /v1/org/policy) #158

feat: policy command family (/v1/policy + /v1/org/policy)

feat: policy command family (/v1/policy + /v1/org/policy) #158

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v7
with:
version: v2.10