From 5246c2cbbe392ae1f60e363b3fecae17db5f54e6 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Tue, 7 Apr 2020 13:32:13 -0700 Subject: [PATCH] workflow: run make in bash (for windows) --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5566466..1fdbfe1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,6 +34,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: Build run: sudo make -j4 package + shell: bash - name: Run the testsuite run: make check if: matrix.os == 'ubuntu-latest'