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 2a0d661Copy full SHA for 2a0d661
.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,14 @@ 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
+ $shortPath = 'D:\\a\\go-paths-helper\\go-paths-helper\\testdata\\fileset\\ANOTHE~1'
36
+ $fullPath = (Get-Item $shortPath).FullName
37
+ Write-Output $fullPath
38
39
- name: Run unit tests
40
run: go test -v ./... -coverprofile=coverage_unit.txt
0 commit comments