Skip to content

Commit

Permalink
Initial gha workflow - run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
souzamari committed Oct 22, 2024
1 parent 5e970c6 commit fe51217
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ios-sdk-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "iOS SDK CI"

on:
pull_request:

jobs:
setup:
name: "Setup"
runs-on: macos-14
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install ruby and gem dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.5
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

sdk-tests:
name: "SDK Tests"
runs-on: macos-14
needs: [setup]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Bundle install
run: bundle install
- name: Run Fastlane
run: bundle exec fastlane tests
- name: Store Artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: output/**

0 comments on commit fe51217

Please sign in to comment.