Skip to content

Commit 317f94c

Browse files
wip
1 parent 6444974 commit 317f94c

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

Diff for: .github/workflows/test.yaml

+22-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
matrix:
1111
operating-system:
1212
[
13-
ubuntu-latest,
13+
# ubuntu-latest,
1414
windows-latest,
15-
macos-latest,
15+
# macos-latest,
1616
]
1717

1818
runs-on: ${{ matrix.operating-system }}
@@ -24,13 +24,31 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v2
2626

27+
- name: test P$
28+
run: |
29+
fsutil 8dot3name set D: 0
30+
31+
fsutil 8dot3name query C:
32+
fsutil 8dot3name query D:
33+
34+
# Reference the file using the short path
35+
# $shortPath = "D:\a\go-paths-helper\go-paths-helper\ANOTHE~1"
36+
# type $shortPath
37+
# if (Test-Path $shortPath) {
38+
# Write-Output "File exists at: $shortPath"
39+
# } else {
40+
# Write-Output "File not found at: $shortPath"
41+
# }
42+
2743
- name: Install Go
2844
uses: actions/setup-go@v2
2945
with:
30-
go-version: "1.21"
46+
go-version: "1.21.10"
3147

3248
- name: Run unit tests
33-
run: go test -v ./... -coverprofile=coverage_unit.txt
49+
run: |
50+
fsutil 8dot3name set D: 0
51+
go test -v ./... -coverprofile=coverage_unit.txt
3452
3553
- name: Send unit tests coverage to Codecov
3654
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)