Skip to content

Commit

Permalink
Show os on check job
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 11, 2024
1 parent 2d4bae7 commit b96879a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/Android-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ on:
jobs:
build:

runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
java_version: [ 17 ]
steps:
- uses: actions/checkout@v4
- name: set up JDK
uses: actions/setup-java@v4
with:
distribution: "adopt"
java-version: 17
java-version: ${{ matrix.java_version }}
- uses: gradle/[email protected]
- name: Build with Gradle
run: ./gradlew assembleDebug lint testDebugUnitTest
Expand Down

0 comments on commit b96879a

Please sign in to comment.