Add logger drop metrics #58
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: ci | |
on: | |
pull_request: | |
branches: '*' | |
push: | |
branches: | |
- master | |
- main | |
- 'release-*' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu, macos, windows] | |
golang: ['1.13', '1.16', '1.17'] | |
# currently, we cannot run non-x86_64 machines on Github Actions cloud env. | |
runs-on: ${{ matrix.os }}-latest | |
name: CI golang ${{ matrix.golang }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.golang }} | |
- name: Change GO11MODULES | |
run: go env -w GO111MODULE=auto | |
- name: Install requirements | |
run: | | |
go get github.com/bmizerany/assert | |
go get github.com/philhofer/fwd | |
go get github.com/tinylib/msgp | |
- name: Test | |
run: go test -v ./fluent |