SOLR-14877: Add github action for running SolrJ tests. (#1891)

This commit is contained in:
Houston Putman 2020-10-19 12:26:12 -04:00 committed by GitHub
parent 6177be7296
commit 0746d30302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 0 deletions

35
.github/workflows/solrj-test.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: SolrJ Tests
on:
pull_request:
branches:
- 'master'
paths:
- '.github/workflows/solrj-test.yml'
- 'solr/solrj/**'
jobs:
test:
name: Run SolrJ Tests
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- 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: Test the SolrJ Package
run: ./gradlew solr:solrj:test