Skip to content

Commit 30c6868

Browse files
committed
give-up support of go1.17
1 parent a96e5c4 commit 30c6868

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

.github/workflows/badge-gorm-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
path: .
2020

2121
- name: Prepare badge data
22-
working-directory: Linux-1.17-tests.out
22+
working-directory: Linux-1.19-tests.out
2323
run: |
2424
echo "tests_passed=$(cat ./*.out | grep PASS | wc -l)" >> $GITHUB_ENV
2525
echo "tests_skipped=$(cat ./*.out | grep SKIP | wc -l)" >> $GITHUB_ENV

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
strategy:
1414
matrix:
15-
go: ['1.19','1.18','1.17']
15+
go: ['1.19','1.18']
1616
platform: [ubuntu-latest, macos-latest, windows-latest]
1717
runs-on: ${{ matrix.platform }}
1818

.github/workflows/gorm-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
gorm-test:
1414
strategy:
1515
matrix:
16-
go: ['1.19','1.18','1.17']
16+
go: ['1.19','1.18']
1717
platform: [ubuntu-latest, macos-latest, windows-latest]
1818
runs-on: ${{ matrix.platform }}
1919

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ The [standard GORM driver for SQLite](https://github.com/go-gorm/sqlite) has one
4040

4141
## Is this tested good ?
4242
Yes, The CI pipeline of this driver employs [whole test base](https://github.com/go-gorm/gorm/tree/master/tests) of GORM, which includes more than **12k** tests (see badge on the page-top). Testing is run against latest major releases of Go:
43-
- 1.17
4443
- 1.18
4544
- 1.19
4645

go.mod

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
module github.com/glebarez/sqlite
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/glebarez/go-sqlite v1.20.0
7-
github.com/jinzhu/now v1.1.5 // indirect
87
gorm.io/gorm v1.24.2
98
)
9+
10+
require (
11+
github.com/google/uuid v1.3.0 // indirect
12+
github.com/jinzhu/inflection v1.0.0 // indirect
13+
github.com/jinzhu/now v1.1.5 // indirect
14+
github.com/mattn/go-isatty v0.0.16 // indirect
15+
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
16+
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
17+
modernc.org/libc v1.21.5 // indirect
18+
modernc.org/mathutil v1.5.0 // indirect
19+
modernc.org/memory v1.4.0 // indirect
20+
modernc.org/sqlite v1.20.0 // indirect
21+
)

0 commit comments

Comments
 (0)