Skip to content

Commit 5f8dc7e

Browse files
authored
Add github action workflows for Android and iOS (#104)
This change adds benign workflows for Android and iOS builds.
1 parent 8e20c72 commit 5f8dc7e

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/android.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Android builds
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
apis:
7+
description: 'CSV of apis whose quickstart examples we should build'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: noop
14+
run: true

.github/workflows/ios.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: iOS builds
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
apis:
7+
description: 'CSV of apis whose quickstart examples we should build'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: noop
14+
run: true

0 commit comments

Comments
 (0)