manager: change nested arrays/maps to soft warn (to support extra_dir… #25
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
name: Test | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.15.6' | |
# TODO: import coveralls key | |
# - run: go get github.com/mattn/goveralls | |
- run: go build -o lug github.com/sjtug/lug/cli/lug | |
- run: go test $(go list ./... | grep -v /vendor/) | |
# - run: goveralls -v |