updating aplib dependency to v1.8.6 #239
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: CucumberTester | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Change wrapper permissions | |
run: chmod +x CucumberTester/gradlew | |
- name: Build | |
run: | | |
echo Running JVM unit tests | |
cd CucumberTester/ | |
./gradlew build |