ci: run tests on Windows and macOS (#15)

This commit is contained in:
Aleksandr Mezin
2025-05-27 12:30:36 +03:00
committed by GitHub
parent 8a449ad181
commit 3ebc40c2ad

View File

@ -8,7 +8,14 @@ on:
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
runs-on:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
runs-on: "${{ matrix.runs-on }}"
steps:
- uses: "actions/checkout@v4.2.2"