Skip to content

Use libhvee instead of the current PowerShell cmdlet implementation #43

Use libhvee instead of the current PowerShell cmdlet implementation

Use libhvee instead of the current PowerShell cmdlet implementation #43

name: Run 'make check' on Windows
on:
push:
branches:
- *

Check failure on line 5 in .github/workflows/make-check-win.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/make-check-win.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-2022
go:
- '1.20'
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Disable gofmt/goimports linters on Windows
run: sed -i "/gofmt/d" .golangci.yml && sed -i "/goimports/d" .golangci.yml
shell: bash
- name: make check
run: make check