diff options
| author | Ray <[email protected]> | 2020-01-09 16:33:57 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-01-09 16:33:57 +0100 |
| commit | b17937dda8e935e13d956282aa0e99ebf9243ca8 (patch) | |
| tree | e848527540fdd127d8fe4b3cf470cabc0163cf60 /.github/workflows/ci_src_examples_macos.yml | |
| parent | 6f0a4a766396e3485db6f3650e8163c28e6b181e (diff) | |
| download | raylib-b17937dda8e935e13d956282aa0e99ebf9243ca8.tar.gz raylib-b17937dda8e935e13d956282aa0e99ebf9243ca8.zip | |
Create ci_src_examples_macos.yml
Diffstat (limited to '.github/workflows/ci_src_examples_macos.yml')
| -rw-r--r-- | .github/workflows/ci_src_examples_macos.yml | 13 |
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 |
