From d9eb67460dc5b6ea58207e5de7410d298afb6d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20Gu=CC=88ndu=CC=88z?= Date: Sun, 9 Apr 2023 07:08:30 +0200 Subject: [PATCH] Use Ubuntu to run SwiftLint check --- .github/workflows/main.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ed7577f..d25cd80 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,20 +13,25 @@ concurrency: jobs: - ci: - runs-on: macos-latest + swiftlint: + runs-on: ubuntu-latest steps: - name: Checkout Source uses: actions/checkout@v3 - - # - name: Run AnyLint - # run: anylint - name: Run SwiftLint uses: norio-nomura/action-swiftlint@3.2.1 with: args: --strict + ci: + runs-on: macos-latest + needs: swiftlint + + steps: + - name: Checkout Source + uses: actions/checkout@v3 + - name: Run tests run: swift test