remove gauge_messages submodule and use go pkg #32
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: tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Run test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup go 1.17 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.5 | |
- name: Run tests | |
run: | | |
go test ./... |