We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 344ac2a + f374cc4 commit 717a743Copy full SHA for 717a743
.github/workflows/build_and_test.yaml
@@ -0,0 +1,26 @@
1
+on:
2
+ push:
3
+ branches: [ "main" ]
4
+ pull_request:
5
6
+
7
+jobs:
8
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Set up Go
15
+ uses: actions/setup-go@v5
16
+ with:
17
+ go-version: '1.23'
18
19
+ - name: Get dependencies
20
+ run: go mod tidy
21
22
+ - name: Build
23
+ run: go build -v ./...
24
25
+ - name: Test
26
+ run: go test -v ./...
go.mod
@@ -1,6 +1,6 @@
module github.com/cloudspannerecosystem/spanner-cassandra-schema-tool
-go 1.25
+go 1.23.0
require (
cloud.google.com/go/spanner v1.78.0
0 commit comments