Skip to content

修复 OAuth public client 注册兼容 #7

修复 OAuth public client 注册兼容

修复 OAuth public client 注册兼容 #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
go:
name: Go check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Format check
run: |
test -z "$(gofmt -l ./cmd ./internal)"
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...
- name: Build
run: go build ./cmd/agentdock