Skip to content

Commit

Permalink
try removing cache steps
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Oct 18, 2024
1 parent 6cf13e8 commit 49ace7e
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,6 @@ jobs:
- name: Run
run: hatch run test:unit

- uses: actions/cache/save@v4
id: cache
with:
path: ${{ steps.hatch.outputs.env }}
key: ${{ runner.os }}-${{ github.sha }}

- name: Coveralls
# We upload only coverage for ubuntu as handling both os
# complicates the workflow too much for little to no gain
Expand Down Expand Up @@ -188,12 +182,6 @@ jobs:
pip install hatch==${{ env.HATCH_VERSION }}
echo "env=$(hatch env find test)" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
id: cache
with:
path: ${{ steps.hatch.outputs.env }}
key: ${{ runner.os }}-${{ github.sha }}

- name: Mypy
if: steps.files.outputs.any_changed == 'true'
run: |
Expand Down Expand Up @@ -259,12 +247,6 @@ jobs:
pip install hatch==${{ env.HATCH_VERSION }}
echo "env=$(hatch env find test)" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
id: cache
with:
path: ${{ steps.hatch.outputs.env }}
key: ${{ runner.os }}-${{ github.sha }}

- name: Install dependencies
run: |
sudo apt update
Expand Down Expand Up @@ -325,12 +307,6 @@ jobs:
pip install hatch==${{ env.HATCH_VERSION }}
echo "env=$(hatch env find test)" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
id: cache
with:
path: ${{ steps.hatch.outputs.env }}
key: ${{ runner.os }}-${{ github.sha }}

- name: Install dependencies
run: |
brew install ffmpeg # for local Whisper tests
Expand Down Expand Up @@ -387,12 +363,6 @@ jobs:
pip install hatch==${{ env.HATCH_VERSION }}
echo "env=$(hatch env find test)" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
id: cache
with:
path: ${{ steps.hatch.outputs.env }}
key: ${{ runner.os }}-${{ github.sha }}

- name: Run
run: hatch run test:integration-windows

Expand Down

0 comments on commit 49ace7e

Please sign in to comment.