From 8c15f0f61ac9d1ba141a30dc52665e9d587a9ebe Mon Sep 17 00:00:00 2001 From: Lucca Bringhenti Date: Mon, 5 Aug 2024 18:07:06 -0300 Subject: [PATCH] Adding install SwiftLint step to the pipeline --- .github/workflows/on_pull_request.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index 02124090..d5ef138d 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -4,6 +4,11 @@ on: branches: - develop workflow_dispatch: + inputs: + test: + description: Just to force the manual trigger + required: false + default: 'trigger' jobs: on_pull_request: @@ -22,6 +27,9 @@ jobs: - name: Install dependencies run: bundle install + - name: Install SwiftLint + run: brew install swiftlint + - name: Run Unit and UI tests uses: ./.github/workflows/actions/run_lane with: