SOLR-14496: Add Basic Auth support to SolrCLI #2106
Workflow file for this run
This file contains 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: SolrJ Tests | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
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@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: Test the SolrJ Package | |
run: ./gradlew solr:solrj:test |