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