Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
Install ruby
  • Loading branch information
scarlac authored Jul 26, 2023
1 parent 76d2306 commit bd21134
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ jobs:
name: build-example-ios
runs-on: macos-latest
steps:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.4'
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install modules
run: yarn
- name: Install example
Expand All @@ -17,8 +21,12 @@ jobs:
name: build-example-android
runs-on: ubuntu-latest
steps:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.4'
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Install modules
Expand Down

0 comments on commit bd21134

Please sign in to comment.