summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-09 16:33:57 +0100
committerGitHub <[email protected]>2020-01-09 16:33:57 +0100
commitb17937dda8e935e13d956282aa0e99ebf9243ca8 (patch)
treee848527540fdd127d8fe4b3cf470cabc0163cf60
parent6f0a4a766396e3485db6f3650e8163c28e6b181e (diff)
downloadraylib-b17937dda8e935e13d956282aa0e99ebf9243ca8.tar.gz
raylib-b17937dda8e935e13d956282aa0e99ebf9243ca8.zip
Create 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