mirror of
https://github.com/glebarez/sqlite.git
synced 2025-09-27 12:02:10 +08:00
give-up support of go1.17
This commit is contained in:
2
.github/workflows/badge-gorm-tests.yml
vendored
2
.github/workflows/badge-gorm-tests.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
path: .
|
path: .
|
||||||
|
|
||||||
- name: Prepare badge data
|
- name: Prepare badge data
|
||||||
working-directory: Linux-1.17-tests.out
|
working-directory: Linux-1.19-tests.out
|
||||||
run: |
|
run: |
|
||||||
echo "tests_passed=$(cat ./*.out | grep PASS | wc -l)" >> $GITHUB_ENV
|
echo "tests_passed=$(cat ./*.out | grep PASS | wc -l)" >> $GITHUB_ENV
|
||||||
echo "tests_skipped=$(cat ./*.out | grep SKIP | wc -l)" >> $GITHUB_ENV
|
echo "tests_skipped=$(cat ./*.out | grep SKIP | wc -l)" >> $GITHUB_ENV
|
||||||
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go: ['1.19','1.18','1.17']
|
go: ['1.19','1.18']
|
||||||
platform: [ubuntu-latest, macos-latest, windows-latest]
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
||||||
|
2
.github/workflows/gorm-tests.yml
vendored
2
.github/workflows/gorm-tests.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
gorm-test:
|
gorm-test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go: ['1.19','1.18','1.17']
|
go: ['1.19','1.18']
|
||||||
platform: [ubuntu-latest, macos-latest, windows-latest]
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
||||||
|
@@ -40,7 +40,6 @@ The [standard GORM driver for SQLite](https://github.com/go-gorm/sqlite) has one
|
|||||||
|
|
||||||
## Is this tested good ?
|
## Is this tested good ?
|
||||||
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:
|
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:
|
||||||
- 1.17
|
|
||||||
- 1.18
|
- 1.18
|
||||||
- 1.19
|
- 1.19
|
||||||
|
|
||||||
|
16
go.mod
16
go.mod
@@ -1,9 +1,21 @@
|
|||||||
module github.com/glebarez/sqlite
|
module github.com/glebarez/sqlite
|
||||||
|
|
||||||
go 1.16
|
go 1.18
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/glebarez/go-sqlite v1.20.0
|
github.com/glebarez/go-sqlite v1.20.0
|
||||||
github.com/jinzhu/now v1.1.5 // indirect
|
|
||||||
gorm.io/gorm v1.24.2
|
gorm.io/gorm v1.24.2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/google/uuid v1.3.0 // indirect
|
||||||
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
||||||
|
github.com/jinzhu/now v1.1.5 // indirect
|
||||||
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
||||||
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
||||||
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
|
||||||
|
modernc.org/libc v1.21.5 // indirect
|
||||||
|
modernc.org/mathutil v1.5.0 // indirect
|
||||||
|
modernc.org/memory v1.4.0 // indirect
|
||||||
|
modernc.org/sqlite v1.20.0 // indirect
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user