Skip to content

Commit

Permalink
[TIDY] Run tests sequentially
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthMike committed Jan 11, 2024
1 parent 7db4861 commit 5ffe1f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
# - name: Lint
# run: ./scripts/runSwiftFormat.sh -l
- name: Lint
run: ./scripts/runSwiftFormat.sh -l
macos:
# needs: lint
needs: lint
runs-on: macos-latest
env:
TESTS_PRIVATEKEY: ${{ secrets.TESTS_PRIVATEKEY }}
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Tests
run: swift test -v
linux:
# needs: lint
needs: [lint, macos]
runs-on: ubuntu-latest
container:
image: swift:5.7-bionic
Expand Down

0 comments on commit 5ffe1f5

Please sign in to comment.