Skip to content

[Android] Use JDK 11 instead of 17 for building #84

[Android] Use JDK 11 instead of 17 for building

[Android] Use JDK 11 instead of 17 for building #84

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build
run: mvn -DskipTests package --file pom.xml
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Test
run: mvn test --file pom.xml