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 6444974 commit 505ccb2Copy full SHA for 505ccb2
.github/workflows/test.yaml
@@ -10,9 +10,9 @@ jobs:
10
matrix:
11
operating-system:
12
[
13
- ubuntu-latest,
+ # ubuntu-latest,
14
windows-latest,
15
- macos-latest,
+ # macos-latest,
16
]
17
18
runs-on: ${{ matrix.operating-system }}
@@ -24,10 +24,17 @@ jobs:
24
- name: Checkout
25
uses: actions/checkout@v2
26
27
+ - name: test P$
28
+ run: |
29
+ New-Item -Path "d:\temp" -Name "another" -ItemType File -Force
30
+ $shortPath = 'd:\temp\ANOTHE~1'
31
+ $fullPath = (Get-Item $shortPath).FullName
32
+ Write-Output $fullPath
33
+
34
- name: Install Go
35
uses: actions/setup-go@v2
36
with:
- go-version: "1.21"
37
+ go-version: "1.21.10"
38
39
- name: Run unit tests
40
run: go test -v ./... -coverprofile=coverage_unit.txt
0 commit comments