Skip to content

Bump actions/add-to-project from 0.5.0 to 0.6.0 (#68) #74

Bump actions/add-to-project from 0.5.0 to 0.6.0 (#68)

Bump actions/add-to-project from 0.5.0 to 0.6.0 (#68) #74

name: go test windows
on: [push]
jobs:
go-test-windows:
name: "go test with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [windows-latest]
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: run go test
run: go test -v -p 1 ./...