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 d3db19e commit 536b411Copy full SHA for 536b411
.github/workflows/main.yml
@@ -195,6 +195,28 @@ jobs:
195
- name: check commits
196
run: scripts/check-each-commit.sh upstream/${{ github.base_ref }}
197
198
+ #######################
199
+ # sql model generation
200
201
+ sqlc-check:
202
+ name: Sqlc check
203
+ runs-on: ubuntu-latest
204
+ steps:
205
+ - name: git checkout
206
+ uses: actions/checkout@v3
207
+
208
+ - name: setup go ${{ env.GO_VERSION }}
209
+ uses: ./.github/actions/setup-go
210
+ with:
211
+ go-version: '${{ env.GO_VERSION }}'
212
213
+ - name: docker image cache
214
+ uses: jpribyl/[email protected]
215
+ continue-on-error: true
216
217
+ - name: Generate sql models
218
+ run: make sqlc-check
219
220
########################
221
# lint code
222
0 commit comments