Build for Windows #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build for Windows | |
on: | |
workflow_dispatch: # Only enable manual runs for now | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Install Dependencies | |
run: | | |
choco install make | |
make format | |
continue-on-error: false | |
- name: Build for Windows | |
run: | | |
make build | |
continue-on-error: false |