From 3c81564704bf5b0d7c0341d455b66b1d88a3d552 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Sun, 15 Nov 2020 21:42:57 +0100 Subject: [PATCH] Test on linux, mac, windows --- .github/workflows/ci.yaml | 7 +++++-- test-code/Main | 4 ---- 2 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 test-code/Main diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b325b0..92e05a5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,8 +8,11 @@ on: - opened - synchronize jobs: - test-linux: - runs-on: ubuntu-latest + build: + strategy: + matrix: + os: [ubuntu-latest, macOS-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: mrkkrp/ormolu-action@master diff --git a/test-code/Main b/test-code/Main deleted file mode 100644 index c8dbf9f..0000000 --- a/test-code/Main +++ /dev/null @@ -1,4 +0,0 @@ -module Main (main) where - -main :: IO () -main = return ()