Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.

Commit cdae059

Browse files
committed
Setup windows dev drive
1 parent 67938e5 commit cdae059

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/phpunit-tests-run.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ jobs:
3131
timeout-minutes: 60
3232

3333
steps:
34+
- name: Setup RAM Disk
35+
uses: samypr100/setup-dev-drive@v3
36+
if: ${{ inputs.os == 'windows-latest' }}
37+
38+
- name: Set TEMP and TMP to Dev Drive
39+
if: ${{ inputs.os == 'windows-latest' }}
40+
run: |
41+
echo "Setting TEMP and TMP to ${{ env.DEV_DRIVE }}"
42+
env:
43+
TEMP: ${{ env.DEV_DRIVE }}
44+
TMP: ${{ env.DEV_DRIVE }}
45+
3446
- name: Checkout repository
3547
uses: actions/checkout@v4
3648

0 commit comments

Comments
 (0)