From 05526176bdeb54407c2c372e9c30e905a8819013 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen Date: Mon, 3 Jun 2024 12:58:23 -0400 Subject: [PATCH] Use fastlane in test workflow --- .github/workflows/test.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 52c0d9211..b6951930d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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