We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1afc57b commit dce1a21Copy full SHA for dce1a21
.github/workflows/.hatch-run.yml
@@ -34,6 +34,17 @@ jobs:
34
runs-on: ${{ fromJson(inputs.runs-on) }}
35
runs-on: ${{ matrix.runs-on }}
36
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
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"
48
- uses: actions/checkout@v4
49
- uses: oven-sh/setup-bun@v2
50
with:
0 commit comments