From 1c657665640bcd02f695a54917e59efab6e613c1 Mon Sep 17 00:00:00 2001 From: Seva Zaikov Date: Sun, 12 Jul 2026 14:25:33 -0700 Subject: [PATCH] run CI on all platforms --- .github/workflows/pull-request-workflow.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-workflow.yaml b/.github/workflows/pull-request-workflow.yaml index 59ded1c..29827f4 100644 --- a/.github/workflows/pull-request-workflow.yaml +++ b/.github/workflows/pull-request-workflow.yaml @@ -9,7 +9,12 @@ on: jobs: run-tests: - runs-on: ubuntu-latest + name: Formatting, Clippy and Tests checks + strategy: + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} timeout-minutes: 15 steps: