feat: add reportAll option and deprecate reportBoth option #88
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: Run tests | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test-on-linux: | |
strategy: | |
matrix: | |
os-version: [ 20.04, 22.04 ] | |
go-version: [ 1.16, 1.17, 1.18, 1.19 ] | |
runs-on: ubuntu-${{ matrix.os-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: check linux kernel version | |
run: uname -a | |
- name: Pull golang image | |
run: docker pull golang:${{ matrix.go-version }} | |
- name: Run all tests | |
run: docker run --rm -v=$(pwd):/app -w=/app --cpus=1.5 -m=1000m golang:${{ matrix.go-version }} go test -v -p 1 ./... | |
test-on-macos: | |
strategy: | |
matrix: | |
os-version: [ 12, 13 ] | |
go-version: [ 1.16, 1.17, 1.18, 1.19 ] | |
runs-on: macos-${{ matrix.os-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "${{ matrix.go-version }}" | |
- name: Run all tests | |
run: go test -v -p 1 ./... |