[ADDED] Allow aggregating JS metrics and service observations from multiple accounts in one config #399
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
name: Testing | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go: [ '1.19' ] | |
os: [ ubuntu-latest, macOS-latest ] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{matrix.go}} | |
- name: Install deps | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
run: | | |
cd /tmp | |
go install -v github.com/wadey/gocovmerge@latest | |
go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@latest | |
- name: Lint | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
run: | | |
go mod tidy | |
go vet ./... | |
golangci-lint run \ | |
--no-config --exclude-use-default=false --max-same-issues=0 \ | |
--disable errcheck \ | |
--enable stylecheck \ | |
--enable unconvert \ | |
--enable gocyclo \ | |
--enable gofmt \ | |
--enable misspell \ | |
--enable unparam \ | |
--enable nakedret \ | |
--enable prealloc \ | |
--enable gocritic \ | |
--enable misspell \ | |
./... | |
- name: Run tests | |
shell: bash --noprofile --norc -x -eo pipefail {0} | |
env: | |
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} | |
run: | | |
export GOPATH="$RUNNER_WORKSPACE" | |
go test -v -race -p 1 ./... | |
./scripts/cov.sh CI |