Add integtest.sh script and remove integTest dependency on integrationTest task #8872
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: Code Hygiene | |
on: [push, pull_request] | |
jobs: | |
linelint: | |
runs-on: ubuntu-latest | |
name: Check if all files end in newline | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Linelint | |
uses: fernandrone/[email protected] | |
spotless: | |
runs-on: ubuntu-latest | |
name: Spotless scan | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: 17 | |
- uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
arguments: spotlessCheck | |
checkstyle: | |
runs-on: ubuntu-latest | |
name: Checkstyle scan | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: 11 | |
- uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
arguments: checkstyleMain checkstyleTest checkstyleIntegrationTest | |
spotbugs: | |
runs-on: ubuntu-latest | |
name: Spotbugs scan | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: 11 | |
- uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
arguments: spotbugsMain |