You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
304 B

  1. name: CI - Source & Examples - macOS
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: macos-latest
  6. steps:
  7. - uses: actions/checkout@v1
  8. - name: make src
  9. run: cd src && make PLATFORM=PLATFORM_DESKTOP
  10. - name: make examples
  11. run: cd examples && make PLATFORM=PLATFORM_DESKTOP