Skip to content

Commit

Permalink
update macos test runner as macos-latest (#238)
Browse files Browse the repository at this point in the history
* update macos test runner as macos-latest

* redis-stack-server

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
ProKil and autofix-ci[bot] authored Oct 21, 2024
1 parent cb6b70d commit 19d39e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
os: [ubuntu-latest, macos-13]
os: [ubuntu-latest, macos-latest]

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 3 additions & 1 deletion sotopia/cli/install/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ def install(
subprocess.run(
"brew tap redis-stack/redis-stack", shell=True, check=True
)
subprocess.run("brew install redis-stack", shell=True, check=True)
subprocess.run(
"brew install redis-stack-server", shell=True, check=True
)
if load_database:
if Path("/opt/homebrew/var/db/redis-stack/dump.rdb").exists():
cover_existing = (
Expand Down

0 comments on commit 19d39e0

Please sign in to comment.