From ff4cc9b4fc63afe965bfcbeefd0c7b5ffb4504dd Mon Sep 17 00:00:00 2001 From: Denis Avvakumov Date: Fri, 6 Oct 2023 23:44:21 +0300 Subject: [PATCH] Add CI --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..36536bc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: PowerPlanManager CI + +on: push + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup MSVC + uses: ilammy/msvc-dev-cmd@v1 + + - name: Configure CMake + shell: cmd + run: | + cmake -G "Visual Studio 17 2022" -A x64 . + + - name: Build + shell: cmd + run: cmake --build . --config Release