Skip to content

Bump github.com/evanphx/json-patch from 5.8.0+incompatible to 5.8.1+incompatible #93

Bump github.com/evanphx/json-patch from 5.8.0+incompatible to 5.8.1+incompatible

Bump github.com/evanphx/json-patch from 5.8.0+incompatible to 5.8.1+incompatible #93

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.15
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: go test ./... -coverprofile cover.out -timeout 30m
env:
CGO_ENABLED: 0
GO111MODULE: on
GOOS: linux
GOARCH: amd64
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out