Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go-sql-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:

- name: Build
run: go build -v ./...
working-directory: ./go/go-sql
working-directory: ./go/database/sql

- name: Test go-sql
run: go test -v ./...
working-directory: ./go/go-sql
working-directory: ./go/database/sql

gofmt:
runs-on: ubuntu-latest
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion go/go-sql/go-sql.go → go/database/sql/go-sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package gosql
package sql

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package gosql
package sql

import (
"context"
Expand Down
8 changes: 5 additions & 3 deletions go/go-sql/go.mod → go/database/sql/go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
module google.com/sqlcommenter/gosql
module github.com/google/sqlcommenter/go/database/sql

go 1.19

require go.opentelemetry.io/otel/sdk v1.10.0
require (
github.com/google/sqlcommenter/go/core v0.0.1-beta
go.opentelemetry.io/otel/sdk v1.10.0
)

require (
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/google/sqlcommenter/go/core v0.0.1-beta // indirect
go.opentelemetry.io/otel v1.10.0 // indirect
golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 // indirect
)
Expand Down
File renamed without changes.