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 7f876ca commit 6894b79Copy full SHA for 6894b79
.github/workflows/main.yml
@@ -152,6 +152,28 @@ jobs:
152
- name: check commits
153
run: scripts/check-each-commit.sh upstream/${{ github.base_ref }}
154
155
+ #######################
156
+ # sql model generation
157
158
+ sqlc-check:
159
+ name: Sqlc check
160
+ runs-on: ubuntu-latest
161
+ steps:
162
+ - name: git checkout
163
+ uses: actions/checkout@v3
164
+
165
+ - name: setup go ${{ env.GO_VERSION }}
166
+ uses: ./.github/actions/setup-go
167
+ with:
168
+ go-version: '${{ env.GO_VERSION }}'
169
170
+ - name: docker image cache
171
+ uses: jpribyl/[email protected]
172
+ continue-on-error: true
173
174
+ - name: Generate sql models
175
+ run: make sqlc-check
176
177
########################
178
# lint code
179
0 commit comments