We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5ea8e commit ae27cf6Copy full SHA for ae27cf6
1 file changed
.github/workflows/main.yml
@@ -43,7 +43,25 @@ jobs:
43
44
- name: run check
45
run: make rpc-check
46
-
+
47
+ ########################
48
+ # SQL compile and check
49
50
+ sqlc-check:
51
+ name: SQL compilation check
52
+ runs-on: ubuntu-latest
53
+ steps:
54
+ - name: git checkout
55
+ uses: actions/checkout@v2
56
57
+ - name: setup go ${{ env.GO_VERSION }}
58
+ uses: actions/setup-go@v2
59
+ with:
60
+ go-version: '~${{ env.GO_VERSION }}'
61
62
+ - name: run check
63
+ run: make sqlc-check
64
65
########################
66
# go mod check
67
0 commit comments