Added missing annotation javadocs #10
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: Maven Tests CI | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'develop' # Maybe we add a develop branch idk | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| maven-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Cache Maven dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Run Maven tests for zetacore | |
| run: mvn clean test -pl zetacore -am | |
| continue-on-error: false | |
| - name: Publish Test Results | |
| if: always() | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: test-results | |
| path: zetacore/target/surefire-reports/*.xml |