Skip to content

feat: Group/channel/topic/member management #48

feat: Group/channel/topic/member management

feat: Group/channel/topic/member management #48

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.25'
check-latest: true
- name: gofmt
run: |
out=$(gofmt -l .)
if [ -n "$out" ]; then
echo "::error::gofmt -l reported unformatted files:"
echo "$out"
exit 1
fi
- name: go vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11.4
- name: go build
run: go build ./...
- name: go test
run: go test ./...