Create ci_src_examples_win.yml

This commit is contained in:
Ray 2020-01-09 16:06:17 +01:00 committed by GitHub
parent 1db9a85b5d
commit 98f4e06a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
name: CI - Source & Examples - Windows
on: [push, pull_request, release]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Enable MSVC Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1.0.0
- name: Build using CL.EXE
run: cd src && make PLATFORM=PLATFORM_DESKTOP
- name: make examples
run: cd examples && make PLATFORM=PLATFORM_DESKTOP