Skip to content

Commit

Permalink
Show os in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Jun 2, 2024
1 parent 8de1f97 commit 1c04b2b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,26 @@ on:
jobs:
Build:
name: Build
runs-on: macOS-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macOS-13 ]
api: [ 28 ]
abi: [ x86_64 ]
tag: [ 'default' ]
include:
# - api: 31
# abi: x86_64
# tag: 'google_apis'
- api: 30
- os: macOS-13
api: 30
abi: x86_64
tag: 'google_apis'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install JDK ${{ matrix.java_version }}
- name: Install JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
Expand Down Expand Up @@ -59,7 +61,11 @@ jobs:
sample/build/outputs/androidTest-results/connected
Check:
name: Check
runs-on: macOS-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macOS-13 ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 1c04b2b

Please sign in to comment.