From a9ba0fb8eed8280fb42c95056e7fe15e71eacbda Mon Sep 17 00:00:00 2001 From: Yonghwan SO Date: Sun, 31 Oct 2021 14:42:17 +0900 Subject: [PATCH 1/2] update modules (testify) --- go.mod | 2 +- go.sum | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 02a5a93..403fc33 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/gobuffalo/events go 1.13 -require github.com/stretchr/testify v1.4.0 +require github.com/stretchr/testify v1.7.0 diff --git a/go.sum b/go.sum index 8fdee58..acb88a4 100644 --- a/go.sum +++ b/go.sum @@ -3,9 +3,9 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= -github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= From 38f59b9c128bdda293c2a9c4be3c1c7b78b52cb5 Mon Sep 17 00:00:00 2001 From: Yonghwan SO Date: Fri, 5 Nov 2021 01:00:46 +0900 Subject: [PATCH 2/2] updated github action test and added badge --- .github/workflows/tests.yml | 6 ++---- README.md | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 68804c1..2f414cf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,22 +1,20 @@ name: Tests on: [push] jobs: - tests-on: name: ${{matrix.go-version}} ${{matrix.os}} runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.12.x, 1.13.x] + go-version: [1.16.x, 1.17.x] os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout Code - uses: actions/checkout@v1 + uses: actions/checkout@v2 with: fetch-depth: 1 - name: Test run: | - go mod tidy -v go test -race ./... diff --git a/README.md b/README.md index 38cc508..a8da1f2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@

GoDoc +Build status Go Report Card