From 599c24042dcacfba8315fc57db252c56f2060fff Mon Sep 17 00:00:00 2001 From: Alexander Heinrich Date: Thu, 4 Nov 2021 09:20:54 +0100 Subject: [PATCH] Fixing an issue with swift-format. It has changed the command line arguments and was throwing an error otherwise --- .github/workflows/build-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 5920c8a..42a573e 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -25,7 +25,7 @@ jobs: - name: "Install swift-format" run: brew install swift-format - name: "Run swift-format" - run: swift-format --recursive --mode lint . + run: swift-format lint --recursive . format-objc: runs-on: macos-latest