wip #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-matrix: | |
strategy: | |
matrix: | |
operating-system: | |
[ | |
# ubuntu-latest, | |
windows-latest, | |
# macos-latest, | |
] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Disable EOL conversions | |
run: git config --global core.autocrlf false | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: test P$ | |
run: | | |
# Create a new file named 'another' | |
New-Item -Path "D:\temp\another" -ItemType "File" | |
# Reference the file using the short path | |
$shortPath = "D:\temp\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.10" | |
- name: Run unit tests | |
run: go test -v ./... -coverprofile=coverage_unit.txt | |
- name: Send unit tests coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage_unit.txt | |
flags: unit |