浏览代码

Create windows_examples.yml

pull/1648/head
Ray 4 年前
committed by GitHub
父节点
当前提交
55bf595cae
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. +26
    -0
      .github/workflows/windows_examples.yml

+ 26
- 0
.github/workflows/windows_examples.yml 查看文件

@ -0,0 +1,26 @@
name: Windows Examples
on:
push:
pull_request:
branches: [ master ]
paths:
- 'examples/**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1
- name: Build Library (MSVC16)
run: |
cd projects/VS2019
msbuild.exe raylib.sln /property:Configuration=Release /property:Platform=x86
cd ../..
shell: cmd

正在加载...
取消
保存