feat: add new remote services to enable keyple-less clients #13
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: Compile and Test Java Api | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
java-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code from ${{ github.repository }}/${{ github.ref }} | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Update permissions | |
working-directory: . | |
run: chmod +x ./gradlew ./.github/scripts/*.sh | |
- name: Check version | |
working-directory: . | |
run: ./.github/scripts/check_version.sh | |
- name: Build and Test | |
working-directory: . | |
run: ./gradlew build test --info --stacktrace |