From 6ed9bfda670e75fd60f30062e2d52faa7b8308b8 Mon Sep 17 00:00:00 2001 From: Khan Winter <35942988+thecoolwinter@users.noreply.github.com> Date: Sat, 15 Jun 2024 15:53:08 -0500 Subject: [PATCH] SwiftLint GH Actions Reporter --- .github/scripts/test_app.sh | 2 +- .github/workflows/lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/test_app.sh b/.github/scripts/test_app.sh index 0ffa13e4df..0c6edb7b07 100755 --- a/.github/scripts/test_app.sh +++ b/.github/scripts/test_app.sh @@ -9,7 +9,7 @@ elif [ $1 = "arm" ]; then fi echo "Building with arch: ${ARCH}" -swiftlint --version +echo "SwiftLint Version: $(swiftlint --version)" export LC_CTYPE=en_US.UTF-8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 47c77d1e35..6188582359 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,4 +10,4 @@ jobs: steps: - uses: actions/checkout@v3 - name: GitHub Action for SwiftLint - run: swiftlint --strict + run: swiftlint --reporter github-actions-logging --strict