We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6ed52 commit 7f1a517Copy full SHA for 7f1a517
.github/workflows/ci.yml
@@ -5,6 +5,25 @@ on:
5
- main
6
pull_request:
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
20
+ runs-on: macos-latest
21
22
23
24
25
26
27
28
build:
29
name: test
internal/engine/postgresql/parse_disabled.go
@@ -6,6 +6,7 @@ package postgresql
import (
"errors"
"io"
+ "runtime"
"github.com/kyleconroy/sqlc/internal/metadata"
"github.com/kyleconroy/sqlc/internal/sql/ast"
0 commit comments