From 846f5c686b4cf2489adc6034ebf8e71d997d3b93 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 11 Mar 2024 17:49:17 -0400 Subject: [PATCH] ci: Use matrix for cross-OS testing --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index debe6e0..75af298 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,14 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: + os: + - ubuntu-latest + - windows-latest + - macos-latest node-version: - 18 - 20