From 6edc7448b55097d66c842910feb0187c0aff3ffc Mon Sep 17 00:00:00 2001 From: Bert Temme Date: Tue, 12 Nov 2024 12:55:12 +0100 Subject: [PATCH] run tests on ubuntu, windows, mac --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 724ca7d..3cb3c9c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,10 @@ on: branches: [ '**' ] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v4