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
workflow_dispatch:
#CI workflows, limited coverage atm
jobs:
#CI workflows across all supported platforms
standard:
strategy:
fail-fast: false
runs-on: ubuntu-latest
matrix:
platforms:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platforms }}
steps:
- uses: actions/checkout@v6
- name: Run all tests
run: make tests
gdb:
strategy:
fail-fast: false