Skip to content

Commit 18847c1

Browse files
committed
Update Unit Testing to run on multiple Operating Systems.
1 parent 558cea8 commit 18847c1

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/unit_test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
name: Unit Test Project
22
on:
33
push:
4-
paths:
5-
- '**.ts'
64
pull_request:
7-
paths:
8-
- '**.ts'
95
jobs:
106
unit_test:
11-
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, windows-latest, macos-latest]
10+
runs-on: ${{ matrix.os }}
1211
steps:
1312
- name: Checkout
1413
uses: actions/checkout@v3

0 commit comments

Comments
 (0)