-
Notifications
You must be signed in to change notification settings - Fork 23
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 #36 from gobuffalo/task-v3-mods
Task v3 + pop v5 + mods + github actions
- Loading branch information
Showing
19 changed files
with
1,493 additions
and
314 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,20 @@ | ||
name: Tests | ||
on: [push, pull_request] | ||
jobs: | ||
|
||
tests-on: | ||
name: ${{matrix.go-version}} ${{matrix.os}} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
go-version: [1.13.x, 1.14.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 -race ./... |
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 |
---|---|---|
|
@@ -27,4 +27,3 @@ generated/ | |
bin/* | ||
gin-bin | ||
.idea/ | ||
go.* |
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,18 @@ | ||
fast: true | ||
linters: | ||
enable-all: false | ||
disable-all: false | ||
enable: | ||
- govet | ||
- golint | ||
- goimports | ||
- deadcode | ||
- typecheck | ||
- ineffassign | ||
- misspell | ||
- nakedret | ||
- unconvert | ||
- megacheck | ||
- varcheck | ||
disable: | ||
- errcheck |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package suite | ||
|
||
import ( | ||
"github.com/gobuffalo/packd" | ||
) | ||
|
||
// Box is Finder + Walkable | ||
type Box interface { | ||
packd.Finder | ||
packd.Walkable | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module github.com/gobuffalo/suite/v3 | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/gobuffalo/buffalo v0.15.5 | ||
github.com/gobuffalo/envy v1.9.0 | ||
github.com/gobuffalo/httptest v1.5.0 | ||
github.com/gobuffalo/mw-csrf v1.0.0 | ||
github.com/gobuffalo/packd v1.0.0 | ||
github.com/gobuffalo/packr/v2 v2.8.0 | ||
github.com/gobuffalo/plush/v4 v4.0.0 | ||
github.com/gobuffalo/pop/v5 v5.0.9 | ||
github.com/gofrs/uuid/v3 v3.1.2 | ||
github.com/gorilla/sessions v1.2.0 | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/crypto v0.0.0-20200320181102-891825fb96df | ||
) |
Oops, something went wrong.