Github Actions don't reuse cache – Ubuntu
I have a pretty simple step for CI on Github Actions, which is supposed to cache Python dependencies, so it would save a lot of computing time. some-step: name: 'Test step' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - run: pipx…