2024-09-05 20:06:45 +08:00
|
|
|
name: "test-cache-windows"
|
2024-08-24 05:58:26 +08:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-setup-cache:
|
2024-11-29 04:07:46 +08:00
|
|
|
runs-on: windows-latest
|
2024-08-24 05:58:26 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup with cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
enable-cache: true
|
|
|
|
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
|
|
|
|
- run: uv sync
|
|
|
|
working-directory: __tests__\fixtures\uv-project
|
|
|
|
test-restore-cache:
|
2024-11-29 04:07:46 +08:00
|
|
|
runs-on: windows-latest
|
2024-08-24 05:58:26 +08:00
|
|
|
needs: test-setup-cache
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Restore with cache
|
|
|
|
id: restore
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-09-05 05:14:10 +08:00
|
|
|
enable-cache: true
|
|
|
|
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
|
2024-08-24 05:58:26 +08:00
|
|
|
- name: Cache was hit
|
|
|
|
run: |
|
|
|
|
if ($env:CACHE_HIT -ne "true") {
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
env:
|
|
|
|
CACHE_HIT: ${{ steps.restore.outputs.cache-hit }}
|
|
|
|
- run: uv sync
|
|
|
|
working-directory: __tests__\fixtures\uv-project
|