Update to Solr 10 #7
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: Build Querqy | |
| # Build every push and every pull request | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| jdk: [ 11, 17, 18, 19, 20 ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Select JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.jdk }} | |
| cache: 'maven' | |
| # Run all the way to the install goal to have artifacts | |
| # in the local maven repo. we need them for later dependency | |
| # analysis | |
| - name: Build | |
| run: mvn --batch-mode install --file pom.xml | |
| - name: Dependency Analysis | |
| run: mvn --batch-mode dependency:tree --file pom.xml -Dverbose |