feat(codegen): Preserve casing of names by uppercasing the first character... #4089
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: python | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| if: false | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.1' | |
| - name: install ./... | |
| run: go install ./... | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: sqlc-dev/sqlc-gen-python | |
| path: python | |
| - run: make test | |
| working-directory: python | |
| - run: sqlc diff | |
| working-directory: python/examples |