Skip to content

Commit

Permalink
Run tests sequentially
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthMike committed Jan 11, 2024
1 parent c5450f8 commit 34404d2
Showing 1 changed file with 31 additions and 10 deletions.
41 changes: 31 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,59 @@ on:
branches: [ develop ]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint:
run_lint:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
# - name: Lint
# run: ./scripts/runSwiftFormat.sh -l
macos:
# needs: lint
- uses: actions/checkout@v4

- name: Lint
run: ./scripts/runSwiftFormat.sh -l

test_macos:
needs: run_lint

runs-on: macos-latest

env:
TESTS_PRIVATEKEY: ${{ secrets.TESTS_PRIVATEKEY }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: SetupKey
run: ./scripts/setupKey.sh "${{ secrets.TESTS_PRIVATEKEY }}"

- name: Build
run: swift build -v

- name: Tests
run: swift test -v
linux:
# needs: lint

test_linux:
needs: [run_lint, test_macos]

runs-on: ubuntu-latest

container:
image: swift:5.7-bionic

env:
TESTS_PRIVATEKEY: ${{ secrets.TESTS_PRIVATEKEY }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: SetupKey
run: ./scripts/setupKey.sh "${{ secrets.TESTS_PRIVATEKEY }}"

- name: Build
run: swift build -v

- name: Tests
run: swift test -v

0 comments on commit 34404d2

Please sign in to comment.