Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
alessio-perugini committed Jun 14, 2024
1 parent 6444974 commit 387d635
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
matrix:
operating-system:
[
ubuntu-latest,
# ubuntu-latest,
windows-latest,
macos-latest,
# macos-latest,
]

runs-on: ${{ matrix.operating-system }}
Expand All @@ -24,10 +24,26 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: test P$
run: |
# Create a new file named 'another'
fsutil 8dot3name query C:
fsutil 8dot3name query D:
fsutil 8dot3name set D: 0
fsutil 8dot3name query D:
# Reference the file using the short path
$shortPath = "D:\a\go-paths-helper\go-paths-helper\testdata\fileset\ANOTHE~1"
type $shortPath
if (Test-Path $shortPath) {
Write-Output "File exists at: $shortPath"
} else {
Write-Output "File not found at: $shortPath"
}
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.21"
go-version: "1.21.10"

- name: Run unit tests
run: go test -v ./... -coverprofile=coverage_unit.txt
Expand Down

0 comments on commit 387d635

Please sign in to comment.