File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
test :
9
9
name : Test
10
+ strategy :
11
+ matrix :
12
+ go : ['1.19', '1.18', '1.17']
13
+ platform : [ubuntu-latest] # can not run in windows OS
10
14
runs-on : ubuntu-latest
11
15
steps :
12
16
- name : Set up Go
13
17
uses : actions/setup-go@v3
14
18
with :
15
- go-version : 1.14
19
+ go-version : ${{ matrix.go }}
16
20
- uses : actions/checkout@v3
17
21
- name : Test
18
- run : go test -v -cover .
22
+ run : go test -v -cover .
Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/jinzhu/now v1.1.5 // indirect
7
7
github.com/mattn/go-sqlite3 v1.14.15
8
- gorm.io/gorm v1.23.10
8
+ gorm.io/gorm v1.24.0
9
9
)
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ=
5
5
github.com/jinzhu/now v1.1.5 /go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8 =
6
6
github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI =
7
7
github.com/mattn/go-sqlite3 v1.14.15 /go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg =
8
- gorm.io/gorm v1.23.10 h1:4Ne9ZbzID9GUxRkllxN4WjJKpsHx8YbKvekVdgyWh24 =
9
- gorm.io/gorm v1.23.10 /go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA =
8
+ gorm.io/gorm v1.24.0 h1:j/CoiSm6xpRpmzbFJsQHYj+I8bGYWLXVHeYEyyKlF74 =
9
+ gorm.io/gorm v1.24.0 /go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA =
You can’t perform that action at this time.
0 commit comments