Update CI workflow to remove paths-ignore (#4393) #5779
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: kotlin | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.readthedocs.yaml' | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.readthedocs.yaml' | |
| jobs: | |
| build: | |
| if: false | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26.2' | |
| - name: install ./... | |
| run: go install ./... | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: sqlc-dev/sqlc-gen-kotlin | |
| path: kotlin | |
| - run: make test | |
| working-directory: kotlin | |
| - run: sqlc diff | |
| working-directory: kotlin/examples | |