From 261d9ed88ac34f1093f644a33a14e47d3fc59109 Mon Sep 17 00:00:00 2001 From: Aryeh Date: Fri, 27 Nov 2020 12:03:28 +1100 Subject: [PATCH] Updated to run setup and clean commands --- .github/workflows/windows.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c4c7023..686ece7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,5 +13,15 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - name: make - run: mingw32-make + - name: make setup + run: make setup + + - name: make compile + run: make compile + - name: make clean + run: make clean + + - name: make compile CXX=g++ + run: make compile CXX=g++ + - name: make clean + run: make clean