Create fastlane-build.yml

This commit is contained in:
aiden 2021-05-25 16:33:03 -04:00 committed by GitHub
parent fecf706777
commit 981abeb8a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
.github/workflows/fastlane-build.yml vendored Normal file
View File

@ -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'