Skip to content

Ground Truth and Dockerfile #80

Ground Truth and Dockerfile

Ground Truth and Dockerfile #80

Workflow file for this run

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