diff options
| author | Ray <[email protected]> | 2020-01-09 16:06:17 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-01-09 16:06:17 +0100 |
| commit | 98f4e06a37c98e9a18fd6a75d50bdd916483f8bb (patch) | |
| tree | a4b7a0669c8203bd0a9b99c979f67c69623ec0d6 /.github/workflows | |
| parent | 1db9a85b5d0a410faa7f9cc3ed08c207d7eba718 (diff) | |
| download | raylib-98f4e06a37c98e9a18fd6a75d50bdd916483f8bb.tar.gz raylib-98f4e06a37c98e9a18fd6a75d50bdd916483f8bb.zip | |
Create ci_src_examples_win.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci_src_examples_win.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci_src_examples_win.yml b/.github/workflows/ci_src_examples_win.yml new file mode 100644 index 00000000..a3a9cd12 --- /dev/null +++ b/.github/workflows/ci_src_examples_win.yml @@ -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/[email protected] + - name: Build using CL.EXE + run: cd src && make PLATFORM=PLATFORM_DESKTOP + - name: make examples + run: cd examples && make PLATFORM=PLATFORM_DESKTOP |
