From: umer2001 Date: Tue, 6 Oct 2020 15:45:12 +0000 (+0500) Subject: 🐛 Fix Windows CI `CC` env in testing step X-Git-Tag: nightly~1240^2 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=refs%2Fpull%2F200%2Fhead;p=gwion.git 🐛 Fix Windows CI `CC` env in testing step --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 40d7c4e8..eaf4313a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -2,13 +2,13 @@ name: Windows on: push: - branches: - - '**' - - '!gh-pages' + branches: + - "**" + - "!gh-pages" pull_request: branches: - - '**' - - '!gh-pages' + - "**" + - "!gh-pages" jobs: build: @@ -20,20 +20,21 @@ jobs: double: [0, 1] steps: - - name: Checkout - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - - name: Init submodules - run: git submodule update --init util ast + - name: Init submodules + run: git submodule update --init util ast - - name: Build - run: make - env: - CC: gcc - USE_DOUBLE: ${{ matrix.double }} - BUILD_ON_WINDOWS: 1 + - name: Build + run: make + env: + CC: gcc + USE_DOUBLE: ${{ matrix.double }} + BUILD_ON_WINDOWS: 1 - - name: Test - run: make test - env: - BUILD_ON_WINDOWS: 1 + - name: Test + run: make test + env: + CC: gcc + BUILD_ON_WINDOWS: 1