From 981abeb8a3b33f445f53fcb14219182a6fcd199f Mon Sep 17 00:00:00 2001 From: aiden Date: Tue, 25 May 2021 16:33:03 -0400 Subject: [PATCH] Create fastlane-build.yml --- .github/workflows/fastlane-build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/fastlane-build.yml diff --git a/.github/workflows/fastlane-build.yml b/.github/workflows/fastlane-build.yml new file mode 100644 index 00000000..94a3b2ad --- /dev/null +++ b/.github/workflows/fastlane-build.yml @@ -0,0 +1,24 @@ +name: fastlane build + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + name: Build and Test default scheme using any available iPhone simulator + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + - uses: actions/setup-ruby@v1 + with: + ruby-version: '2.7.2' + - name: Carthage + run: "carthage update" + - uses: maierj/fastlane-action@v2.0.1 + with: + lane: 'build'