Pass on taint analysis domain + first unit test #278
Workflow file for this run
This file contains hidden or 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: 'Gradle Build (non-master branch)' | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| jobs: | |
| compile-and-test: | |
| 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: compile and run unit tests' | |
| run: ./gradlew test |