diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab1270b..0f4f6c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,6 +35,8 @@ jobs: with: python-version: 3.12 cache: 'pip' + cache: 'pip' + cache-dependency-path: .github/workflows/build.yml - name: Install deps run: "pip install 'setuptools~=72.1'" @@ -59,9 +61,12 @@ jobs: os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - name: Install Python + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Python + uses: actions/setup-python@v5 with: python-version: ${{ env.python-version }} cache: 'pip'