Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Test making CI run on ubuntu and windows #125

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
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
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ on:

jobs:
test:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest

runs-on: ${{matrix.os}}

steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -37,5 +45,6 @@ jobs:

- run: npm install

- run: opam install . --deps-only
- run: eval $(opam env) && opam exec -- dune build
- run: opam pin add rescript-editor-support.dev . --no-action
- run: opam install . --deps-only --with-doc --with-test
- run: opam exec -- dune build