2.0.3 versions (#302) #6
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
| # This workflow builds the ./database/starters project with `mvn install`. | |
| name: Run the tests for Oracle AI Database starters | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - ".github/workflows/databaseStartersTest.yml" | |
| - "database/starters/**" | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - ".github/workflows/databaseStartersTest.yml" | |
| - "database/starters/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| database-starters: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| - name: Setup Java 21 | |
| uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Run Maven Build and Test | |
| working-directory: ./database/starters | |
| run: | | |
| mvn clean install |