More tweaking of flow.

This commit is contained in:
Mark VanderVoord
2026-07-01 07:14:45 -04:00
parent bf10a5bc8a
commit 9a412dfccc
+11 -3
View File
@@ -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: