summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci_src_examples_macos.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci_src_examples_macos.yml')
-rw-r--r--.github/workflows/ci_src_examples_macos.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ci_src_examples_macos.yml b/.github/workflows/ci_src_examples_macos.yml
new file mode 100644
index 00000000..68b8c624
--- /dev/null
+++ b/.github/workflows/ci_src_examples_macos.yml
@@ -0,0 +1,13 @@
+name: CI - Source & Examples - Windows
+
+on: [push, pull_request, release]
+
+jobs:
+ build:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: make src
+ run: cd src && make PLATFORM=PLATFORM_DESKTOP
+ - name: make examples
+ run: cd examples && make PLATFORM=PLATFORM_DESKTOP