Created a AI module to test different AI providers #630
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 - JDK 21 Build" | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/project.yml' | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-jdk21: | |
| name: "JDK 21 Build" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Build | |
| run: mvn clean install -ntp -DskipTests |