From 69ff8d92d8f0665241131dc88522923011148928 Mon Sep 17 00:00:00 2001 From: RedxLus Date: Wed, 13 Jan 2021 04:41:25 +0100 Subject: [PATCH] Create cmake-windows.yml --- .github/workflows/cmake-windows.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/cmake-windows.yml diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml new file mode 100644 index 00000000..cd82a3f7 --- /dev/null +++ b/.github/workflows/cmake-windows.yml @@ -0,0 +1,20 @@ +name: CMake windows + +on: [push] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: test + shell: powershell + run: Install-Module posh-git -Scope CurrentUser -Force + +