File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
internal/engine/postgresql Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 5
5
- main
6
6
pull_request :
7
7
jobs :
8
+ windows-build :
9
+ if : ${{ github.ref == 'refs/heads/main' }}
10
+ runs-on : windows-latest
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-go@v3
14
+ with :
15
+ go-version : ' 1.19'
16
+ - run : go build ./...
17
+
18
+ darwin-build :
19
+ if : ${{ github.ref == 'refs/heads/main' }}
20
+ runs-on : macos-latest
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - uses : actions/setup-go@v3
24
+ with :
25
+ go-version : ' 1.19'
26
+ - run : go build ./...
8
27
9
28
build :
10
29
name : test
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package postgresql
6
6
import (
7
7
"errors"
8
8
"io"
9
+ "runtime"
9
10
10
11
"github.com/kyleconroy/sqlc/internal/metadata"
11
12
"github.com/kyleconroy/sqlc/internal/sql/ast"
You can’t perform that action at this time.
0 commit comments