1
0
Fork 0
mirror of https://github.com/emacs-twist/org-babel.git synced 2025-03-13 20:30:04 +00:00

ci: Test on macOS as well

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.
This commit is contained in:
Akira Komamura 2024-09-19 22:29:32 +09:00
parent 320f3c1562
commit ed4fe5fff2

View file

@ -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