Skip to content

Commit

Permalink
Set up Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuhaow committed Feb 27, 2020
1 parent 2df49d2 commit cbc66cf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on: [pull_request, push]

jobs:
build:
strategy:
matrix:
sdk: [macosx, iphoneos]
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Bundle
run: bundle install
- name: Generate Xcode project
run: bundle exec fastlane run spm command:generate-xcodeproj
- name: Build target
run: bundle exec fastlane run gym sdk:${{ matrix.sdk }}

0 comments on commit cbc66cf

Please sign in to comment.