Skip to content

add ENABLE_COMMUNITY_SERVER to configure for community server #28

add ENABLE_COMMUNITY_SERVER to configure for community server

add ENABLE_COMMUNITY_SERVER to configure for community server #28

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.x"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Vet
run: go vet -v ./...