Implementation of the pentagon abstract domain #606
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: 'PR: compile, test and check style' | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
compile-test-cron-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 lisa/gradlew | |
- name: 'Gradle: full build, run all tests and check code style' | |
run: cd lisa && ./gradlew completeBuild |