From a6b56d9b32ec3271fb62f17eddee51cee30e6476 Mon Sep 17 00:00:00 2001 From: Felix Mau Date: Wed, 29 Dec 2021 13:17:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20::=20Fix=20not=20running=20Swift?= =?UTF-8?q?Lint=20on=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/continuous-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 4cfde00..4562e9e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -9,7 +9,7 @@ # name: Continuous Integration -on: +on: push: pull_request: schedule: @@ -17,7 +17,7 @@ on: # # - Note: "Scheduled workflows run on the latest commit on the default or base branch." # https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events - - cron: '0 0 * * *' + - cron: '0 0 * * *' # A workflow run is made up of one or more jobs that can run sequentially or in parallel. jobs: @@ -48,7 +48,7 @@ jobs: - name: Execute SwiftLint and treat any formatting errors as real errors. working-directory: ./Example - run: bundle exec fastlane format + run: bundle exec fastlane lint - name: Execute tests. working-directory: ./Example