Fix sort alignment bug for real MongoDB collections, add 400k load test #7
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 | |
| on: | |
| push: | |
| branches: [ master, 'feature/**' ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build and compile | |
| run: mvn clean compile -q | |
| - name: Run tests (skip MongoDB-dependent tests) | |
| run: mvn test -Dtest="GenericComparisonServiceListTest,GenericComparisonServiceLargeScaleTest" -DfailIfNoTests=false |