From 071acd0d4b2cfc536f1540244662b75bba198056 Mon Sep 17 00:00:00 2001 From: sergiughiran2 <144211939+sergiughiran2@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:31:39 +0200 Subject: [PATCH] Create fastlane.yml --- .github/workflows/fastlane.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/fastlane.yml diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml new file mode 100644 index 0000000..7c843ca --- /dev/null +++ b/.github/workflows/fastlane.yml @@ -0,0 +1,23 @@ +name: fastlane build and test + +on: + pull_request: + branches: [ "main", "develop/main" ] + workflow_dispatch: + +jobs: + build: + runs-on: macos-13 + + steps: + - uses: actions/checkout@v3 + + - name: Set up ruby env + - uses: ruby/setup-ruby@v1.138.0 + with: + ruby-version: 3.2.1 + bundler-cache: true + + - name: Build & Test with fastlane + run: bundle exec fastlane ios tests +