github: sqlc check

This commit is contained in:
bitromortac 2026-03-27 12:26:03 +01:00
parent 3157dbc870
commit fcb52aa2b4
No known key found for this signature in database
GPG key ID: 1965063FC13BEBE2

View file

@ -50,10 +50,28 @@ jobs:
- name: run imports check
run: make fmt
- name: run JS stubs check
run: make rpc-js-compile
#######################
# sql model generation
#######################
sqlc-check:
name: Sqlc 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: Generate sql models
run: make sqlc-check
########################
# lint code
########################