Skip to content

Commit 3a32502

Browse files
authored
Merge pull request #32 from simdutf/extend_tests
chore: allow ci on many OSes
2 parents 2b51181 + 8c25b5e commit 3a32502

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
name: .NET
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
name: Build and test on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
os: [ubuntu-latest, windows-latest, macos-latest]
813
steps:
914
- uses: actions/checkout@v4
1015

0 commit comments

Comments
 (0)