From fd01ea62f457b4cf7b18d4f7e61479915916e5c2 Mon Sep 17 00:00:00 2001 From: Ajitem Sahasrabuddhe Date: Fri, 6 Dec 2019 10:46:41 +0530 Subject: [PATCH] add win dependencies --- .github/workflows/cli.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 66eb6b2..4a10ff5 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -54,9 +54,10 @@ jobs: - name: Install Dependencies (Windows) if: matrix.os == 'windows-latest' run: | - mkdir -p $GOPATH/bin + md $GOPATH/bin + choco install curl + choco install wget curl -s https://api.github.com/repos/urfave/gfmrun/releases/latest | grep gfmrun-windows-amd64 | grep download | cut -d '"' -f 4 | wget -O $GOPATH/bin/gfmrun -i - - chmod +x $GOPATH/bin/gfmrun npm install markdown-toc - name: Run Tests (v1)