File tree 7 files changed +9
-9
lines changed
7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 28
28
- name : Check out code into the Go module directory
29
29
uses : actions/checkout@v2
30
30
with :
31
- path : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
31
+ path : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3
32
32
- name : Set up Go ${{ matrix.go }}
33
33
if : matrix.go != 'tip'
34
34
uses : actions/setup-go@v2
56
56
echo "$GOROOT/bin" >> $GITHUB_PATH
57
57
- run : go version
58
58
- run : go get -t ./...
59
- working-directory : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
59
+ working-directory : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3
60
60
- run : go test .
61
- working-directory : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml
61
+ working-directory : ${{ github.workspace }}/go/src/github.com/zillow/go-yaml/v3
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
"strings"
26
26
"time"
27
27
28
- "github.com/zillow/go-yaml"
28
+ "github.com/zillow/go-yaml/v3 "
29
29
. "gopkg.in/check.v1"
30
30
)
31
31
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
"net"
27
27
"os"
28
28
29
- "github.com/zillow/go-yaml"
29
+ "github.com/zillow/go-yaml/v3 "
30
30
. "gopkg.in/check.v1"
31
31
)
32
32
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"fmt"
20
20
"log"
21
21
22
- "github.com/zillow/go-yaml"
22
+ "github.com/zillow/go-yaml/v3 "
23
23
)
24
24
25
25
// An example showing how to unmarshal embedded
Original file line number Diff line number Diff line change 1
- module " github.com/zillow/go-yaml"
1
+ module " github.com/zillow/go-yaml/v3 "
2
2
3
3
require (
4
4
" gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405
Original file line number Diff line number Diff line change 4
4
"strings"
5
5
"testing"
6
6
7
- "github.com/zillow/go-yaml"
7
+ "github.com/zillow/go-yaml/v3 "
8
8
. "gopkg.in/check.v1"
9
9
)
10
10
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
"io"
24
24
"strings"
25
25
26
- "github.com/zillow/go-yaml"
26
+ "github.com/zillow/go-yaml/v3 "
27
27
. "gopkg.in/check.v1"
28
28
)
29
29
You can’t perform that action at this time.
0 commit comments