This repository was archived by the owner on Jun 25, 2022. It is now read-only.
File tree 8 files changed +39
-97
lines changed
v2/jam/store/_fixtures/disk-pack
8 files changed +39
-97
lines changed Original file line number Diff line number Diff line change
1
+ # Default owner
2
+ * @ gobuffalo/core-managers
Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ github : markbates
4
+ patreon : buffalo
Original file line number Diff line number Diff line change
1
+ name : Tests
2
+ on : [push, pull_request]
3
+ jobs :
4
+
5
+ tests :
6
+ name : ${{matrix.go-version}} ${{matrix.os}}
7
+ runs-on : ${{ matrix.os }}
8
+ strategy :
9
+ matrix :
10
+ go-version : [1.12.x, 1.13.x]
11
+ os : [macos-latest, windows-latest, ubuntu-latest]
12
+ steps :
13
+ - name : Checkout Code
14
+ uses : actions/checkout@v1
15
+ with :
16
+ fetch-depth : 1
17
+ - name : Test v1
18
+ run : |
19
+ go get -t -v ./...
20
+ go test -race ./...
21
+ go install -v ./packr
22
+ - name : Test v2
23
+ run : |
24
+ cd v2
25
+ go get -t -v ./...
26
+ go test -race ./...
27
+ go install -v ./packr2
Original file line number Diff line number Diff line change @@ -33,4 +33,5 @@ gin-bin
33
33
debug.test
34
34
.grifter /
35
35
* -packr.go
36
+ .idea /
36
37
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
module foo
2
2
3
+ go 1.14
4
+
3
5
require (
4
6
github.com/gobuffalo/packr/v2 v2.0.0-rc.2 // indirect
5
7
golang.org/x/tools v0.0.0-20181116193547-e77c06808af6 // indirect
Original file line number Diff line number Diff line change
1
+ errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw =
2
+ errors v0.8.0 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
1
3
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ =
2
4
github.com/BurntSushi/toml v0.3.1 /go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU =
3
5
github.com/Masterminds/semver v1.4.2 /go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y =
@@ -191,8 +193,7 @@ github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W
191
193
github.com/onsi/gomega v1.4.1 /go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA =
192
194
github.com/onsi/gomega v1.4.2 /go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY =
193
195
github.com/pelletier/go-toml v1.2.0 /go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic =
194
- errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw =
195
- errors v0.8.0 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
196
+ github.com/pkg/errors v0.8.0 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
196
197
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
197
198
github.com/satori/go.uuid v1.2.0 /go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0 =
198
199
github.com/serenize/snaker v0.0.0-20171204205717-a683aaf2d516 /go.mod h1:Yow6lPLSAXx2ifx470yD/nUe22Dv5vBvxK/UK9UUTVs =
You can’t perform that action at this time.
0 commit comments