Migrate from Bitnami images to official images as Bitnami doesn't mai… #456
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: Test turms-plugin-rasa | |
| on: [ push, pull_request ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5.2.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 25 | |
| - name: Maven Verify | |
| run: | | |
| mvn clean install -Dmaven.test.skip=true -am -B -pl turms-plugins/turms-plugin-rasa --no-transfer-progress | |
| mvn verify -pl turms-plugins/turms-plugin-rasa |