ci: run sqlc-check

This commit is contained in:
Boris Nagaev 2025-10-06 20:02:32 -03:00
parent 8ec28b2268
commit 9eddee7073
No known key found for this signature in database

View file

@ -43,7 +43,25 @@ jobs:
- name: run check
run: make rpc-check
########################
# SQL compile and check
########################
sqlc-check:
name: SQL compilation check
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
- name: run check
run: make sqlc-check
########################
# go mod check
########################