From ef03439b5ceb51bd4c1344e11cd0c111e98bdc1d Mon Sep 17 00:00:00 2001 From: Federico Jaramillo Martinez Date: Sat, 13 Jun 2026 11:41:17 +0200 Subject: [PATCH] ci: run verify/build on Linux and Windows, allow manual dispatch Add a fail-fast: false OS matrix (ubuntu-latest, windows-latest) and a workflow_dispatch trigger so CI can be run on demand. --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 485b201..57788c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,14 +4,21 @@ on: push: branches: [main] pull_request: + workflow_dispatch: permissions: contents: read jobs: verify: - name: Verify and package - runs-on: ubuntu-latest + name: Verify and package (${{ matrix.os }}) + runs-on: ${{ matrix.os }} + strategy: + # Report Linux and Windows results independently instead of cancelling + # the matrix on the first failure. + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest] steps: - name: Checkout uses: actions/checkout@v5