Skip to content

Commit

Permalink
Use fastlane in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintPatrck committed Jun 3, 2024
1 parent 11dcefa commit 0552617
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,20 @@ jobs:
distribution: "temurin"
java-version: ${{ env.JAVA_VERSION }}

- name: Configure Ruby
uses: ruby/setup-ruby@0cde4689ba33c09f1b890c1725572ad96751a3fc # v1.178.0
with:
bundler-cache: true

- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Build and test
run: |
./gradlew testDebug lintDebug
bundle exec fastlane check
- name: Upload to codecov.io
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1
Expand Down

0 comments on commit 0552617

Please sign in to comment.