File tree 1 file changed +17
-3
lines changed
1 file changed +17
-3
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,10 +24,24 @@ jobs:
24
24
- name : Checkout
25
25
uses : actions/checkout@v2
26
26
27
+ - name : test P$
28
+ run : |
29
+ # Create a new file named 'another'
30
+ New-Item -Path "C:\another" -ItemType "File"
31
+
32
+ # Reference the file using the short path
33
+ $shortPath = "C:\ANOTHE~1"
34
+ if (Test-Path $shortPath) {
35
+ Write-Output "File exists at: $shortPath"
36
+ } else {
37
+ Write-Output "File not found at: $shortPath"
38
+ }
39
+ dir
40
+
27
41
- name : Install Go
28
42
uses : actions/setup-go@v2
29
43
with :
30
- go-version : " 1.21"
44
+ go-version : " 1.21.10 "
31
45
32
46
- name : Run unit tests
33
47
run : go test -v ./... -coverprofile=coverage_unit.txt
You can’t perform that action at this time.
0 commit comments