Ground Truth and Dockerfile #80
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: 'Pull request on master: compile, build and spotless check' | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
compile-test-codestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
- name: 'Set up JDK 11' | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: 'Grant execute permission for gradlew' | |
run: chmod +x gradlew | |
- name: 'Gradle: full build, run all tests and check code style' | |
run: ./gradlew test && ./gradlew spotlessCheck |