Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Aug 21, 2024
1 parent 3689677 commit 007fb13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-name: cache-conda
with:
path: ~/miniconda3/envs/test
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-unknown-linux-gnu/requirements_dev.txt', '.github/workflows/tests.yml') }}
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-manylinux_2_28/requirements_dev.txt', '.github/workflows/tests.yml') }}
# restore-keys: |
# ${{ runner.os }}-conda-${{ env.cache-name }}-
# ${{ runner.os }}-conda-
Expand All @@ -43,7 +43,7 @@ jobs:
if: steps.cache-conda.outputs.cache-hit != 'true'
run: |
# python -m pip install --upgrade pip
uv pip install -r deps/x86_64-unknown-linux-gnu/requirements_dev.txt
uv pip install -r deps/x86_64-manylinux_2_28/requirements_dev.txt
uv pip install -e .
- name: Run pytest
run: |
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/miniconda3/envs/test
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-unknown-linux-gnu/requirements_dev.txt', '.github/workflows/tests.yml') }}
key: ${{ runner.os }}-conda-${{ env.cache-name }}-${{ hashFiles('deps/x86_64-manylinux_2_28/requirements_dev.txt', '.github/workflows/tests.yml') }}
# restore-keys: |
# ${{ runner.os }}-conda-${{ env.cache-name }}-
# ${{ runner.os }}-conda-
Expand All @@ -107,7 +107,7 @@ jobs:
if: steps.cache-conda.outputs.cache-hit != 'true'
run: |
# python -m pip install --upgrade pip
uv pip install -r deps/x86_64-unknown-linux-gnu/requirements_dev.txt
uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
uv pip install -e .
- name: Run doctest
run: |
Expand Down

0 comments on commit 007fb13

Please sign in to comment.