Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
test-macos:
name: Test macOS
runs-on: macos-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -24,6 +25,7 @@ jobs:
test-ios:
name: Test iOS
runs-on: macos-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -50,6 +52,7 @@ jobs:
name: Test Linux
runs-on: ubuntu-latest
container: swift:6.1
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions Tests/SwiftPathTests/ConcurrencyTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import XCTest
@testable import SwiftPath

#if !os(Linux)
final class ConcurrencyTests: XCTestCase {

private let booksJson = """
Expand Down Expand Up @@ -317,3 +318,4 @@ final class ConcurrencyTests: XCTestCase {
}
}
}
#endif
Loading