Skip to content

Commit

Permalink
Merge pull request #32 from simdutf/extend_tests
Browse files Browse the repository at this point in the history
chore: allow ci on many OSes
  • Loading branch information
lemire authored May 23, 2024
2 parents 2b51181 + 8c25b5e commit 3a32502
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: .NET

on: [push]
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
name: Build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 3a32502

Please sign in to comment.