aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2021-05-06 17:45:01 -0400
committerGitHub <noreply@github.com>2021-05-06 17:45:01 -0400
commitc967ce981c2bedc23f0cd614ea7a3b108d009365 (patch)
tree29640d70b2259152ee6abe080f1049b767ead2e8 /.github
parentbe932c2f558b535ba2c2d10bf6d0df68040a1821 (diff)
downloadcleanpath-c967ce981c2bedc23f0cd614ea7a3b108d009365.tar.gz
Add windows (#3)
* Add windows support
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index bc094b7..abb6236 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -20,11 +20,15 @@ jobs:
include:
- name: Debug (Linux)
os: ubuntu-latest
- build_type: Release
+ build_type: Debug
- name: Debug (MacOS)
os: macos-latest
- build_type: Release
+ build_type: Debug
+
+ - name: Debug (Windows)
+ os: windows-latest
+ build_type: Debug
- name: Release (Linux)
os: ubuntu-latest
@@ -34,6 +38,11 @@ jobs:
os: macos-latest
build_type: Release
+ - name: Release (Windows)
+ os: windows-latest
+ build_type: Release
+
+
steps:
- uses: actions/checkout@v2