Skip to content

wip

wip #138

Workflow file for this run

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: |
fsutil 8dot3name set D: 0
fsutil 8dot3name query C:
fsutil 8dot3name query D:
# Reference the file using the short path
# $shortPath = "D:\a\go-paths-helper\go-paths-helper\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.10"
- name: Run unit tests
run: |
fsutil 8dot3name set D: 0
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