Skip to content

Merge pull request #18 from dabradley/development #65

Merge pull request #18 from dabradley/development

Merge pull request #18 from dabradley/development #65

Workflow file for this run

name: Windows Tests
# Controls when the workflow will run
#on:
# Triggers the workflow on push or pull request events but only for the main branch
#push:
#branches: [ main ]
#pull_request:
#branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
#workflow_dispatch:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build Test
run: |
make azurelustre-windows
- name: Run Windows Unit Tests
run: |
go test -v -race ./pkg/...