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.

26 lines
469 B

  1. name: Windows Examples
  2. on:
  3. push:
  4. pull_request:
  5. branches: [ master ]
  6. paths:
  7. - 'examples/**'
  8. jobs:
  9. build:
  10. runs-on: windows-latest
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Add MSBuild to PATH
  14. uses: microsoft/setup-msbuild@v1
  15. - name: Build Library (MSVC16)
  16. run: |
  17. cd projects/VS2019
  18. msbuild.exe raylib.sln /property:Configuration=Release /property:Platform=x86
  19. cd ../..
  20. shell: cmd