Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Deniskore committed Oct 6, 2023
1 parent b16d0bb commit ff4cc9b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ff4cc9b

Please sign in to comment.