-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from fasmat/feature/upgrade-pop
Upgrade pop dependency
- Loading branch information
Showing
23 changed files
with
709 additions
and
1,154 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
name: Tests | ||
on: [push] | ||
jobs: | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
tests-on: | ||
name: ${{matrix.go-version}} ${{matrix.os}} | ||
jobs: | ||
tests-off: | ||
name: ${{ matrix.os }} - Go v${{ matrix.go-version }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
go-version: [1.12.x, 1.13.x] | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 1 | ||
- name: Test | ||
run: | | ||
go mod tidy -v | ||
go test -tags sqlite -race ./... | ||
go-version: | ||
- "1.16.x" | ||
- "1.17.x" | ||
os: | ||
- "macos-latest" | ||
- "windows-latest" | ||
- "ubuntu-latest" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Go ${{ matrix.go }} | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Test | ||
run: | | ||
go mod tidy -v | ||
go test -tags "sqlite" -cover ./... |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
test: | ||
packr2 clean | ||
go test -tags sqlite -failfast -short -cover ./... | ||
packr2 | ||
go mod tidy -v | ||
|
||
cov: | ||
packr2 clean | ||
go test -short -coverprofile cover.out ./... | ||
go tool cover -html cover.out | ||
packr2 | ||
go mod tidy -v | ||
|
||
install: | ||
packr2 clean | ||
packr2 | ||
go install -v . | ||
|
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
module github.com/gobuffalo/buffalo-pop/v2 | ||
module github.com/gobuffalo/buffalo-pop/v3 | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/fatih/color v1.9.0 | ||
github.com/gobuffalo/buffalo v0.15.5 | ||
github.com/gobuffalo/events v1.4.1 | ||
github.com/gobuffalo/flect v0.2.1 | ||
github.com/gobuffalo/genny/v2 v2.0.5 | ||
github.com/gobuffalo/httptest v1.5.0 | ||
github.com/gobuffalo/packr/v2 v2.8.0 | ||
github.com/gobuffalo/plush/v4 v4.0.0 | ||
github.com/gobuffalo/pop/v5 v5.3.0 | ||
github.com/gofrs/uuid v3.2.0+incompatible | ||
github.com/markbates/errx v1.1.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/spf13/cobra v0.0.6 | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/fatih/color v1.13.0 | ||
github.com/gobuffalo/buffalo v0.18.0 | ||
github.com/gobuffalo/events v1.4.2 | ||
github.com/gobuffalo/flect v0.2.4 | ||
github.com/gobuffalo/genny/v2 v2.0.8 | ||
github.com/gobuffalo/httptest v1.5.1 | ||
github.com/gobuffalo/plush/v4 v4.1.9 | ||
github.com/gobuffalo/pop/v6 v6.0.0 | ||
github.com/gofrs/uuid v4.1.0+incompatible | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/stretchr/testify v1.7.0 | ||
) |
Oops, something went wrong.