Skip to content

Commit

Permalink
Reformat GitHub Actions gradle.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrombout committed Dec 18, 2019
1 parent 9886aae commit 72afecc
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 11.0.4
uses: actions/setup-java@v1
with:
java-version: 11.0.4
- name: Build with Gradle
run: ./gradlew build
- uses: actions/checkout@v1
- name: Set up JDK 11.0.4
uses: actions/setup-java@v1
with:
java-version: 11.0.4
- name: Build with Gradle
run: ./gradlew build

sonarqube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11.0.4
uses: actions/setup-java@v1
with:
java-version: 11.0.4
- name: Analyze with Sonarqube
run: ./gradlew sonarqube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v1
- name: Set up JDK 11.0.4
uses: actions/setup-java@v1
with:
java-version: 11.0.4
- name: Analyze with Sonarqube
run: ./gradlew sonarqube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


0 comments on commit 72afecc

Please sign in to comment.