Skip to content

Commit

Permalink
Adding solr tests to precommit checks (#52)
Browse files Browse the repository at this point in the history
* Adding solr core and solrj tests to precommit checks

* Updating to run tests as separate step

* Fixing solr test name

* Adding submodule checkout

* Running all tests

* Running all tests
  • Loading branch information
Justin Sweeney authored Dec 15, 2022
1 parent a1e82a4 commit b77737f
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/solr-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b77737f

Please sign in to comment.