We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4009fa4 commit 315cb5aCopy full SHA for 315cb5a
.github/workflows/ci.yml
@@ -5,7 +5,7 @@ on:
5
- main
6
pull_request:
7
jobs:
8
- windows-test:
+ windows-build:
9
if: ${{ github.ref == 'refs/heads/main' }}
10
runs-on: windows-latest
11
steps:
@@ -15,13 +15,9 @@ jobs:
15
go-version-file: go.mod
16
check-latest: true
17
18
- - name: install sqlc-gen-test
19
- run: go install github.com/sqlc-dev/[email protected]
20
-
21
- - name: install ./...
22
- run: go install ./...
23
24
- - run: go test ./...
+ # Currently some tests rely on line endings so we only build
+ # without running.
+ - run: go build ./...
25
26
darwin-test:
27
0 commit comments