diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index daff9b4..15bf2b0 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -23,5 +23,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.12" + cache: pip - name: Run Linting run: hatch run lint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 94e25d9..e2df8a6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,6 +31,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: pip - name: Run Tests run: hatch run test && hatch run coverage xml - name: Coverage Results diff --git a/.github/workflows/typing.yml b/.github/workflows/typing.yml index 24ca031..04107b7 100644 --- a/.github/workflows/typing.yml +++ b/.github/workflows/typing.yml @@ -23,5 +23,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.12" + cache: pip - name: Run Type Checking run: hatch run type