Skip to content

Commit

Permalink
test on more platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnzhou committed Jan 6, 2024
1 parent c56a137 commit 0443753
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ jobs:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
# swift: ["5.8", "5.9"]
swift: ["5.9"]
os: [ubuntu-latest, macos-latest]
swift: ["5.8", "5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1
Expand Down
2 changes: 1 addition & 1 deletion Mock/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _generate_response(desired_status_code) -> Response:
desired_status_code = int(desired_status_code)
except:
return make_response("Invalid Status-Code in the HTTP Header", 404)
response = make_response("Hello from lcl-ping mock server!")
response = make_response("Hello from lcl-ping mock server!\n")
response.status_code = desired_status_code
return response

Expand Down

0 comments on commit 0443753

Please sign in to comment.