Skip to content

all: reconcile build tags with internal/dirent package and test builds #62

all: reconcile build tags with internal/dirent package and test builds

all: reconcile build tags with internal/dirent package and test builds #62

Workflow file for this run

name: Test fastwalk on Windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
go: [1.21, 1.22]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
- name: Test Race
run: go test -race ./...