Skip to content

Commit

Permalink
Add Windows CI
Browse files Browse the repository at this point in the history
Linked: #14
  • Loading branch information
AndreasLrx committed May 11, 2022
1 parent cf81d15 commit 2a4540c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,22 @@ jobs:
- name: Unit Tests
run: cd ${{github.workspace}} && ctest -C ${{env.BUILD_TYPE}}

windows:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Unit Tests
run: cd ${{github.workspace}} && ctest -C ${{env.BUILD_TYPE}}

lint-format:
runs-on: ubuntu-latest

Expand Down

0 comments on commit 2a4540c

Please sign in to comment.