Skip to content

Commit

Permalink
Setup ruby in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
magkue authored Nov 4, 2024
1 parent fbd2bda commit 0844c49
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test-ios-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Update Bundler
run: whoami && ruby --version && bundle update
run: bundle update

- name: Check static code quality of iOS App
run: bundle exec fastlane swift_lint
Expand Down

0 comments on commit 0844c49

Please sign in to comment.