judgeval instrumentation, package structure, add getters on base tracer #4
Workflow file for this run
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 judgeval-java | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "judgeval-java/**" | |
| - "pom.xml" | |
| - ".github/workflows/test-judgeval-java.yml" | |
| jobs: | |
| test-install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: "21" | |
| distribution: "temurin" | |
| - name: Cache Maven packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Test Install | |
| run: | | |
| mvn -B -Dgpg.skip=true -pl judgeval-java -am clean install | |
| - name: Verify Build Artifacts | |
| run: | | |
| echo "Checking build artifacts..." | |
| ls -la judgeval-java/target/ || true | |
| echo "JAR files:" | |
| find judgeval-java/target -name "*.jar" -type f |