diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index d55a4699..72b74051 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -6,6 +6,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: golangci-lint uses: reviewdog/action-golangci-lint@v2 + with: + golangci_lint_flags: '--enable-all --exclude-use-default=false' diff --git a/tests/go.mod b/tests/go.mod index 6502c179..7e5ea8a5 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -4,11 +4,13 @@ go 1.14 require ( github.com/google/uuid v1.3.0 + github.com/jackc/pgx/v4 v4.14.0 // indirect github.com/jinzhu/now v1.1.3 github.com/lib/pq v1.10.4 + golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect gorm.io/driver/mysql v1.2.0 gorm.io/driver/postgres v1.2.2 - gorm.io/driver/sqlite v1.2.4 + gorm.io/driver/sqlite v1.2.6 gorm.io/driver/sqlserver v1.2.1 gorm.io/gorm v1.22.3 )