2021-05-05 12:48:57 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
name: Test
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
go-version: [1.15.x, 1.16.x]
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2022-07-16 19:58:58 +00:00
|
|
|
- uses: actions/cache@v3.0.1
|
2021-08-16 09:47:56 +00:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2021-05-05 12:48:57 +00:00
|
|
|
- name: Test
|
|
|
|
run: go test -race -bench . -benchmem ./...
|
|
|
|
- name: Test CBOR
|
|
|
|
run: go test -tags binary_log ./...
|
|
|
|
|