Skip to content

Commit

Permalink
Merge branch 'sparckles:main' into cd-action-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dave42w authored Dec 19, 2024
2 parents c19c6ea + 7495342 commit e48186e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/preview-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
macos:
runs-on: macos-12
runs-on: macos-13
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
UV_SYSTEM_PYTHON: 1
jobs:
macos:
runs-on: macos-12
runs-on: macos-13
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rust-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy -- -D warnings
- run: cargo clippy
# -- -D warnings

2 changes: 1 addition & 1 deletion integration_tests/base_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def message(ws: WebSocketConnector, msg: str, global_dependencies) -> str:
elif state == 3:
ws.close()
# TODO temporary fix to avoid CI failure
resp = "Connection Closed"
resp = "Connection closed"

websocket_state[websocket_id] = (state + 1) % 4
return resp
Expand Down

0 comments on commit e48186e

Please sign in to comment.