Skip to content

Fix isCygwinPipeName to accept Windows 7 trailing suffix (#90) #43

Fix isCygwinPipeName to accept Windows 7 trailing suffix (#90)

Fix isCygwinPipeName to accept Windows 7 trailing suffix (#90) #43

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
go:
- '1.26'
- '1.25'
- '1.24'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: test
shell: bash
run: |
./go.test.sh
- name: upload coverage report
uses: codecov/codecov-action@v6
with:
env_vars: OS,GO
env:
OS: ${{ matrix.os }}
GO: ${{ matrix.go }}