diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1fdbfe1..ba9ac1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,11 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: Build run: sudo make -j4 package + if: matrix.os != 'windows-latest' + - name: Build + run: make -j4 package shell: bash + if: matrix.os == 'windows-latest' - name: Run the testsuite run: make check if: matrix.os == 'ubuntu-latest'