Skip to content

Commit

Permalink
Test on ubuntu, macos, and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Jan 3, 2023
1 parent 867a78e commit cd4f54d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd4f54d

Please sign in to comment.