diff --git a/.github/workflows/badge-gorm-tests.yml b/.github/workflows/badge-gorm-tests.yml index 9983956..9c0e3ce 100644 --- a/.github/workflows/badge-gorm-tests.yml +++ b/.github/workflows/badge-gorm-tests.yml @@ -19,7 +19,7 @@ jobs: path: . - name: Prepare badge data - working-directory: Linux-1.17-tests.out + working-directory: Linux-1.19-tests.out run: | echo "tests_passed=$(cat ./*.out | grep PASS | wc -l)" >> $GITHUB_ENV echo "tests_skipped=$(cat ./*.out | grep SKIP | wc -l)" >> $GITHUB_ENV diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94cdbd7..140fb63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: test: strategy: matrix: - go: ['1.19','1.18','1.17'] + go: ['1.19','1.18'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/gorm-tests.yml b/.github/workflows/gorm-tests.yml index 828e780..1f2488e 100644 --- a/.github/workflows/gorm-tests.yml +++ b/.github/workflows/gorm-tests.yml @@ -13,7 +13,7 @@ jobs: gorm-test: strategy: matrix: - go: ['1.19','1.18','1.17'] + go: ['1.19','1.18'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} diff --git a/README.md b/README.md index a95b068..7ffa285 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ The [standard GORM driver for SQLite](https://github.com/go-gorm/sqlite) has one ## 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: -- 1.17 - 1.18 - 1.19 diff --git a/go.mod b/go.mod index c2522d8..897bd26 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,21 @@ module github.com/glebarez/sqlite -go 1.16 +go 1.18 require ( github.com/glebarez/go-sqlite v1.20.0 - github.com/jinzhu/now v1.1.5 // indirect 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 +)