Bump jsoup from 1.11.3 to 1.15.3 (#11) #6
This file contains hidden or 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: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build with Maven | |
run: ./mvnw --no-transfer-progress clean verify | |
sonar: | |
name: sonar analyse | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Run SonarCloud analyse | |
run: > | |
./mvnw --batch-mode --no-transfer-progress clean | |
org.jacoco:jacoco-maven-plugin:prepare-agent verify | |
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.organization=michael-simons-github | |
-Dsonar.projectKey=eu.michael-simons:java-oembed | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |