diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-05-06 17:45:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-06 17:45:01 -0400 |
| commit | c967ce981c2bedc23f0cd614ea7a3b108d009365 (patch) | |
| tree | 29640d70b2259152ee6abe080f1049b767ead2e8 /.github/workflows | |
| parent | be932c2f558b535ba2c2d10bf6d0df68040a1821 (diff) | |
| download | cleanpath-c967ce981c2bedc23f0cd614ea7a3b108d009365.tar.gz | |
Add windows (#3)
* Add windows support
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cmake.yml | 13 |
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 |
