Enabled CI for other supported platforms

This commit is contained in:
2026-04-23 10:10:58 +10:00
parent accb7f9fb4
commit 991d29e3e6
@@ -14,16 +14,22 @@ on:
- v2 - v2
workflow_dispatch: workflow_dispatch:
#CI workflows, limited coverage atm
jobs: jobs:
#CI workflows across all supported platforms
standard: standard:
strategy: strategy:
fail-fast: false fail-fast: false
runs-on: ubuntu-latest matrix:
platforms:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platforms }}
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Run all tests - name: Run all tests
run: make tests run: make tests
gdb: gdb:
strategy: strategy:
fail-fast: false fail-fast: false