Skip to content

Commit

Permalink
new ios test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stelselim committed May 14, 2024
1 parent 8c9c7ab commit 5ded195
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 19 deletions.
19 changes: 19 additions & 0 deletions .github/actions/build_ios/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Build iOS App'
description: 'Builds the iOS app using Fastlane'

runs:
using: 'composite'

steps:
- name: Hello Function
run: echo "Hello!"
shell: bash

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'

- name: Install Fastlane
run: gem install fastlane
shell: bash
19 changes: 0 additions & 19 deletions .github/actions/build_ios/actions_ios.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "iOS Test"

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: macOS-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Build iOS
uses: ./.github/actions/build_ios

0 comments on commit 5ded195

Please sign in to comment.