Skip to content

Commit

Permalink
ci: Test on macOS as well
Browse files Browse the repository at this point in the history
Although this library is written in pure Nix, the built-in support for regular
expressions is platform-dependent, which can cause breakage when run on
different platforms. It's safer to test on all platforms.
  • Loading branch information
akirak committed Sep 19, 2024
1 parent a7b4e35 commit fc6a52a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ on:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V28
Expand Down

0 comments on commit fc6a52a

Please sign in to comment.