Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # [macOS-latest, windows-latest] do not come with docker :(
os:
- ubuntu-latest
- macos-26-intel
- windows-latest
cabal: ["3.12.1.0"]
ghc:
- 9.2.8
Expand Down Expand Up @@ -46,6 +49,10 @@ jobs:
cabal configure -O0 --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all

- name: Set up Docker
if: runner.os == 'macOS'
uses: docker/setup-docker-action@v5

- name: Test
run: |
cabal test all
Expand Down
Loading