Skip to content

Commit

Permalink
fix: Re-use poetry cache from CI step for publish docs (#189)
Browse files Browse the repository at this point in the history
Fix cd cache version ...
  • Loading branch information
amirhessam88 authored Jul 17, 2024
1 parent 8fda373 commit 42dd964
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# ----- install dependencies -----
#----------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
strategy:
fail-fast: true
matrix:
# TODO(amir): enable `windows-latest`, `macos-latest` and fix possible `poetry` issues and glmnet
# TODO(amir): enable `windows-latest` and fix possible `poetry` issues and glmnet
# TODO(amir): add `"3.12"` once the glmnet wheel is released
os: ["ubuntu-latest"]
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.9", "3.10", "3.11"]
steps:
#----------------------------------------------
Expand Down

0 comments on commit 42dd964

Please sign in to comment.