Skip to content

Commit 7853a5e

Browse files
committed
disable cache in CI
1 parent 5ee5c91 commit 7853a5e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: 3.8
3636
- os: windows-latest
3737
python-version: 3.9
38-
- os: macos-latest
38+
- os: macos-13
3939
python-version: 3.9
4040
steps:
4141
- uses: actions/checkout@v3
@@ -45,10 +45,10 @@ jobs:
4545
python-version: ${{ matrix.python-version }}
4646
- name: Test a minimal install
4747
run: |
48-
pip install .
48+
pip install --no-cache-dir .
4949
python tests/test_minimal.py
5050
- name: Install Trimesh
51-
run: pip install .[easy,test]
51+
run: pip install --no-cache-dir .[easy,test]
5252
- name: Run Pytest
5353
run: pytest tests/
5454

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Test a minimal install
3737
run: |
38-
pip install .
38+
pip install --no-cache-dir .
3939
python tests/test_minimal.py
4040
- name: Install Trimesh
41-
run: pip install .[easy,test]
41+
run: pip install --no-cache-dir .[easy,test]
4242
- name: Run Pytest
4343
run: |
4444
pytest

0 commit comments

Comments
 (0)