fix(NET-1540): add cfg to autoclose connections on rac, when logged out #5265
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
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' | |
- name: Build | |
run: | | |
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build main.go | |
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -tags=ee main.go | |
nmctl: | |
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' | |
- name: Build | |
run: | | |
cd cli | |
GOOS=linux GOARCH=amd64 go build -o nmctl | |
GOOS=darwin GOARCH=amd64 go build -o nmctl | |
GOOS=darwin GOARCH=arm64 go build -o nmctl | |
GOOS=windows GOARCH=amd64 go build -o nmctl | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: run tests | |
run: | | |
go vet ./... | |
go test -p 1 ./... -v | |
go test -p 1 ./pro -v --tags ee | |
env: | |
DATABASE: sqlite | |
CLIENT_MODE: "off" | |
staticcheck: | |
env: | |
DATABASE: sqlite | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: run static checks | |
run: | | |
sudo apt update | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
{ ~/go/bin/staticcheck -tags=ee ./... ; } |