Skip to content

Commit

Permalink
ci: Performs linux tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NeedleInAJayStack committed Jun 10, 2024
1 parent c42f2ad commit 36c6fc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push: { branches: [ main ] }

jobs:
darwin-test:
macos-test:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v2
- name: Darwin build & test
run: swift test --skip IntegrationTests
linux-build:
linux-test:
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v2
- name: Linux build
run: swift build --target HaystackClientNIO
- name: Linux build & test
run: swift test --skip IntegrationTests

0 comments on commit 36c6fc3

Please sign in to comment.