SQP improvements with new Test Classes #613
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: Hipparchus Optim Test (My Fork) | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| name: Build and Test Optimization | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| cache: 'maven' | |
| - name: Test Optimization Module | |
| # Usiamo -U per forzare l'aggiornamento delle dipendenze (come nell'originale) | |
| # Usiamo -pl e -am per isolare il modulo optimization | |
| run: mvn -B -U -f pom.xml test -pl hipparchus-optim -am | |