22 lines
500 B
YAML
22 lines
500 B
YAML
|
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
|
||
|
- name: Test
|
||
|
run: go test -race -bench . -benchmem ./...
|
||
|
- name: Test CBOR
|
||
|
run: go test -tags binary_log ./...
|
||
|
|