From 82e1d8f9aa56db302a2267b33e2f1601ed9c9dc6 Mon Sep 17 00:00:00 2001 From: alex <8379108+Alex33856@users.noreply.github.com> Date: Thu, 5 Mar 2026 12:11:51 -0500 Subject: [PATCH 1/2] feat: also run build workflow on Windows --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d8ab4e..3a91f7e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,12 @@ on: [ pull_request, push ] jobs: build: - runs-on: ubuntu-22.04 + strategy: + matrix: + include: + - os: ubuntu-latest + - os: windows-latest + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v4 From f36f023a9ae3ad9e727b2c757cb5a5866ede9357 Mon Sep 17 00:00:00 2001 From: alex <8379108+Alex33856@users.noreply.github.com> Date: Thu, 5 Mar 2026 12:13:27 -0500 Subject: [PATCH 2/2] feat: allow running build manually with workflow_dispatch --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a91f7e..fe601ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ # against bad commits. name: build -on: [ pull_request, push ] +on: [ pull_request, push, workflow_dispatch ] jobs: build: