File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2828 uses : actions/checkout@v3
2929 - name : Run Tests
3030 run : swift test
31+ linux :
32+ name : Linux (Swift ${{ matrix.swift }})
33+ strategy :
34+ fail-fast : false
35+ matrix :
36+ swift : ["5.5", "5.6"]
37+ runs-on : ubuntu-latest
38+ container : swift:${{ matrix.swift }}
39+ steps :
40+ - name : Checkout Repo
41+ uses : actions/checkout@v3
42+ - name : Run Tests
43+ run : swift test
Original file line number Diff line number Diff line change 11import Foundation
2+ #if canImport(FoundationNetworking)
3+ import FoundationNetworking
4+ #endif
25
36public struct HTTPHeader < T> {
47 public let field : String
Original file line number Diff line number Diff line change 1- import XCTest
1+ #if canImport(FoundationNetworking)
2+ import FoundationNetworking
3+ #endif
24@testable import HTTPHeaders
5+ import XCTest
36
47final class HTTPHeadersTests : XCTestCase {
58 func testParseString( ) throws {
You can’t perform that action at this time.
0 commit comments