Skip to content

Commit 9171855

Browse files
authored
Update and rename blank.yml to workflow.yml
1 parent 58a49e8 commit 9171855

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/workflow.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: macOS-10.14
6+
steps:
7+
- uses: actions/checkout@v1
8+
9+
- name: Submodule init
10+
run: git submodule update --init --recursive
11+
12+
- name: Xcode select
13+
run: sudo xcode-select -s /Applications/Xcode_10.3.app
14+
15+
- name: Run tests
16+
run: |
17+
bundle install
18+
bundle exec fastlane scan

0 commit comments

Comments
 (0)