Bump org.postgresql:postgresql in /exoquery-sample-codegen-ai-ollama #117
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: CI | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| - name: List samples | |
| run: ./gradlew listSamples --no-daemon | |
| - name: Build all samples | |
| run: ./gradlew buildAll --no-daemon --stacktrace | |
| - name: Test all samples | |
| run: ./gradlew testAll --no-daemon --stacktrace |