From 89cf561d505a770b6ca9cd2a28c285fbaab2eeb4 Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Wed, 14 Oct 2020 14:12:19 -0500 Subject: Try not running the new unit tests on Windows --- .github/workflows/CI.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 03fcf84..cc9370f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -90,11 +90,18 @@ jobs: run: | sudo cp /home/runner/.local/bin/fpm /usr/local/bin - - name: Run tests on Haskell fpm + - name: Run tests on Haskell fpm (Linux / macOS) + if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') run: | cd bootstrap stack test + - name: Run tests on Haskell fpm (Windows) + if: contains(matrix.os, 'windows') + run: | + cd bootstrap + stack test --skip fpm-unittest + - name: Build and run Fortran fpm (Linux / macOS) if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') run: | -- cgit v1.2.3