Skip to content

Commit 5ded195

Browse files
committed
new ios test workflow
1 parent 8c9c7ab commit 5ded195

File tree

3 files changed

+39
-19
lines changed

3 files changed

+39
-19
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Build iOS App'
2+
description: 'Builds the iOS app using Fastlane'
3+
4+
runs:
5+
using: 'composite'
6+
7+
steps:
8+
- name: Hello Function
9+
run: echo "Hello!"
10+
shell: bash
11+
12+
- name: Set up Ruby
13+
uses: ruby/setup-ruby@v1
14+
with:
15+
ruby-version: '2.7'
16+
17+
- name: Install Fastlane
18+
run: gem install fastlane
19+
shell: bash

.github/actions/build_ios/actions_ios.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/build_ios.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "iOS Test"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
runs-on: macOS-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v3
18+
19+
- name: Build iOS
20+
uses: ./.github/actions/build_ios

0 commit comments

Comments
 (0)