We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6421f0e commit ba88810Copy full SHA for ba88810
.github/workflows/ci.yml
@@ -15,16 +15,10 @@ jobs:
15
uses: actions/setup-python@v5
16
with:
17
python-version: 3.12
18
- - name: Cache pip dependencies
19
- uses: actions/cache@v3
20
- with:
21
- path: ~/.cache/pip
22
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
23
- restore-keys: |
24
- ${{ runner.os }}-pip-
25
- name: Install dependencies
26
run: |
27
python -m pip install --upgrade pip
+ pip install torch --index-url https://download.pytorch.org/whl/cpu
28
pip install ".[dev]"
29
- name: Run Unit Tests
30
0 commit comments