diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 7a072f9..56641f3 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,9 +8,23 @@ on: jobs: test: - name: Test - runs-on: ubuntu-latest + name: Test (${{ matrix.os_name }}) + runs-on: ${{ matrix.os }} timeout-minutes: 30 + strategy: + fail-fast: false + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest + include: + - os: ubuntu-latest + os_name: Linux + - os: macos-latest + os_name: macOS + - os: windows-latest + os_name: Windows steps: - name: Checkout uses: actions/checkout@v3