From 622792414586f798bc991c880c4f1f33113e7740 Mon Sep 17 00:00:00 2001 From: MSP-Greg Date: Fri, 24 Nov 2023 15:40:12 -0600 Subject: [PATCH] Actions test.yml - add Windows CI, head builds use OpenSSL 3.2.x --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ad38c24..c1fc2648 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,13 @@ jobs: needs: ruby-versions name: test (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: + fail-fast: false matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} - os: [ ubuntu-latest, macos-latest ] + os: [ ubuntu-latest, macos-latest, windows-latest ] + include: + - { os: windows-latest, ruby: mswin } + - { os: windows-latest, ruby: ucrt } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4