Skip to content

Commit dce1a21

Browse files
committed
Increase re-runs on github
1 parent 1afc57b commit dce1a21

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/.hatch-run.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,17 @@ jobs:
3434
runs-on: ${{ fromJson(inputs.runs-on) }}
3535
runs-on: ${{ matrix.runs-on }}
3636
steps:
37+
- name: Setup RAM Disk
38+
if: runner.os == 'Windows'
39+
uses: chad-golden/setup-ramdisk@main
40+
- name: Changing working directory to RAM disk
41+
if: runner.os == 'Windows'
42+
run: |
43+
echo "Changing working directory to RAM disk"
44+
New-Item -ItemType Directory -Force -Path "R:\workspace"
45+
cd R:\workspace
46+
env:
47+
GITHUB_WORKSPACE: "R:\\workspace"
3748
- uses: actions/checkout@v4
3849
- uses: oven-sh/setup-bun@v2
3950
with:

0 commit comments

Comments
 (0)