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 321c640Copy full SHA for 321c640
.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 }}
@@ -27,7 +27,15 @@ jobs:
27
- name: Install Go
28
uses: actions/setup-go@v2
29
with:
30
- go-version: "1.21"
+ 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
39
40
- name: Run unit tests
41
run: go test -v ./... -coverprofile=coverage_unit.txt
0 commit comments