Skip to content

Commit 321c640

Browse files
wip
1 parent 6444974 commit 321c640

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/test.yaml

Lines changed: 11 additions & 3 deletions
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 }}
@@ -27,7 +27,15 @@ jobs:
2727
- name: Install Go
2828
uses: actions/setup-go@v2
2929
with:
30-
go-version: "1.21"
30+
go-version: "1.21.10"
31+
32+
33+
- name: test P$
34+
run: |
35+
New-Item -Path "d:\temp" -Name "another" -ItemType File -Force
36+
$shortPath = 'd:\temp\ANOTHE~1'
37+
$fullPath = (Get-Item $shortPath).FullName
38+
Write-Output $fullPath
3139
3240
- name: Run unit tests
3341
run: go test -v ./... -coverprofile=coverage_unit.txt

0 commit comments

Comments
 (0)