Skip to content

Commit 468bb3b

Browse files
committed
ci:remove unncessary lint lane and use the gradlew command directly
1 parent 2840e07 commit 468bb3b

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ jobs:
6060
name: Fastlane - run all tests with coverage report
6161
command: |
6262
bundle exec fastlane testDev
63-
bundle exec fastlane lint
63+
- run: ./gradlew lintDebug
6464
- save_gradle_cache
6565
- save_bundler_cache
6666
- run:
6767
name: Analyze on SonarCloud
68-
command: ./gradlew lintDebug sonar
68+
command: ./gradlew sonar
6969
- codecov/upload:
7070
files: app/build/mergedReportDir/jacocoTestReport/jacocoTestReport.xml
7171
- store_test_results:

fastlane/Fastfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ platform :android do
3333
])
3434
end
3535

36-
desc "Runs lint"
37-
lane :lint do
38-
gradle(task: "lintDebug")
39-
end
40-
4136
desc "Deploy to Firebase AppTester Dev channel"
4237
lane :distDev do
4338
gradle(tasks: [

0 commit comments

Comments
 (0)