aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorSebastián A <sebastian.aedo29@gmail.com>2023-03-13 17:29:10 -0300
committerGitHub <noreply@github.com>2023-03-13 22:29:10 +0200
commit2f700a27381e558a4eb5a3f8fd56757f4c7a417c (patch)
treeae8eb7857da60d62ef0fbfd9faa80c4cbc18ff45 /.github/workflows
parentc09a9cfb06c87d114615c105adda91b0e6273b69 (diff)
Add windows to the CI (#98)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c10e671..1a068ae 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,6 +33,20 @@ jobs:
run: |
make
+ windows-latest:
+ runs-on: windows-latest
+
+ steps:
+ - name: Clone
+ uses: actions/checkout@v1
+
+ - name: Build
+ run: |
+ mkdir build
+ cd build
+ cmake ..
+ cmake --build . --config Release
+
# ubuntu-latest-gcc:
# runs-on: ubuntu-latest
#