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 505ccb2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 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,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: test P$
run: |
New-Item -Path "d:\temp" -Name "another" -ItemType File -Force
$shortPath = 'd:\temp\ANOTHE~1'
$fullPath = (Get-Item $shortPath).FullName
Write-Output $fullPath
- 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 505ccb2

Please sign in to comment.