Skip to content

Bump github.com/tidwall/gjson from 1.17.0 to 1.17.1 (#78) #152

Bump github.com/tidwall/gjson from 1.17.0 to 1.17.1 (#78)

Bump github.com/tidwall/gjson from 1.17.0 to 1.17.1 (#78) #152

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.12, 1.13, 1.4, 1.15, 1.16]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test -race ./...
- name: Coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
if: matrix.go == 1.16 && matrix.os == 'ubuntu-latest'
- name: Codecov
uses: codecov/codecov-action@v1
if: matrix.go == 1.16 && matrix.os == 'ubuntu-latest'