diff --git a/.github/workflows/solr-test.yml b/.github/workflows/solr-test.yml new file mode 100644 index 00000000000..14de91109ac --- /dev/null +++ b/.github/workflows/solr-test.yml @@ -0,0 +1,38 @@ +name: Solr Tests + +on: + pull_request: + branches: + - '**' + +jobs: + test: + name: Run Solr Tests + + runs-on: ubuntu-latest + + steps: + # Setup + - uses: actions/checkout@v2 + with: + submodules: true + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + distribution: 'temurin' + java-version: 11 + java-package: jdk + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - uses: actions/cache@v2 + with: + path: | + ~/.gradle/caches + key: ${{ runner.os }}-gradle-solrj-${{ hashFiles('versions.lock') }} + restore-keys: | + ${{ runner.os }}-gradle-solrj- + ${{ runner.os }}-gradle- + - name: Initialize gradle settings + run: ./gradlew localSettings + - name: Test Solr + run: ./gradlew test \ No newline at end of file