File tree 1 file changed +22
-4
lines changed
1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 10
10
matrix :
11
11
operating-system :
12
12
[
13
- ubuntu-latest,
13
+ # ubuntu-latest,
14
14
windows-latest,
15
- macos-latest,
15
+ # macos-latest,
16
16
]
17
17
18
18
runs-on : ${{ matrix.operating-system }}
@@ -24,13 +24,31 @@ jobs:
24
24
- name : Checkout
25
25
uses : actions/checkout@v2
26
26
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
+
27
43
- name : Install Go
28
44
uses : actions/setup-go@v2
29
45
with :
30
- go-version : " 1.21"
46
+ go-version : " 1.21.10 "
31
47
32
48
- 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
34
52
35
53
- name : Send unit tests coverage to Codecov
36
54
uses : codecov/codecov-action@v1
You can’t perform that action at this time.
0 commit comments