Clarify implication of setting rdp.settings.privacy.public-search #864
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
lfs: true | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3.13.0 | |
with: | |
distribution: temurin | |
java-version: '8' | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.8.2 | |
with: | |
node-version: 16 | |
- name: Test code with Maven | |
run: ./mvnw test |