From 9a412dfccc8e580786a856d48f467ec9bd8ac76c Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Wed, 1 Jul 2026 07:14:45 -0400 Subject: [PATCH] More tweaking of flow. --- .github/workflows/main.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 22e7c82..df1e235 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,10 +23,14 @@ jobs: ruby: ['3.0', '3.1', '3.2', '3.3'] exclude: # create sparse matrix to avoid pointless duplication + - os: macos-latest + ruby: '3.0' - os: macos-latest ruby: '3.1' - os: macos-latest ruby: '3.2' + - os: windows-latest + ruby: '3.0' - os: windows-latest ruby: '3.1' - os: windows-latest @@ -90,11 +94,15 @@ jobs: gem install bundler bundle install - - name: Run C and System Tests + - name: Run C Unit Tests env: NO_COLOR: ${{ matrix.os == 'windows-latest' && '1' || '' }} - run: | - cd test && rake test:c test:system test:examples + run: cd test && rake test:c + + - name: Run System Tests + env: + NO_COLOR: ${{ matrix.os == 'windows-latest' && '1' || '' }} + run: cd test && rake test:system test:examples # Job: Valgrind memory-leak check (Linux/gcc_64 only, latest Ruby) valgrind: