general: support reading config files (#55)

This commit is contained in:
Yuhui Xu
2022-07-08 23:13:10 -04:00
committed by GitHub
parent 892a7bee22
commit 6f6b2bd283
10 changed files with 2055 additions and 219 deletions

View File

@@ -44,8 +44,20 @@ jobs:
working_directory: /home/circleci/go/src/github.com/xddxdd/bird-lg-go
steps:
- checkout
- run: GO111MODULE=auto go get -v -t -d ./...
- run: GO111MODULE=auto go test -v ./...
- run:
name: Test frontend
command: |
export GO111MODULE=on
cd frontend
go get -v -t -d ./...
go test -v ./...
- run:
name: Test proxy
command: |
export GO111MODULE=on
cd proxy
go get -v -t -d ./...
go test -v ./...
docker-frontend:
machine: