Skip to content

simplifications and corrections of text in README and website #512

simplifications and corrections of text in README and website

simplifications and corrections of text in README and website #512

# This workflow will build a Java project with Maven (Windows Latest)
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven (Windows Latest)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
java: [ '17', '18', '19', '20', '21' ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test with Maven and Analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn --batch-mode --file=pom.xml --update-snapshots --projects=!echo-performance-test,!jargyle-distribution verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -D sonar.projectKey=jh3nd3rs0n_jargyle -P coverage