update Finicity OpenAPI yaml to latest version and update examples ba… #7
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: [ main ] } | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: "21" | |
| cache: sbt | |
| - name: Set up Sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: Compile (runs codegen via sourceGenerators) | |
| run: sbt -v +compile | |