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 0953fab
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 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,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: test P$
run: |
# Create a new file named 'another'
New-Item -Path "C:\another" -ItemType "File"
# Reference the file using the short path
$shortPath = "C:\ANOTHE~1"
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 0953fab

Please sign in to comment.