From 55bf595cae484e942489e0f8bd48811af9b0bb44 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 8 Mar 2021 19:17:42 +0100 Subject: [PATCH] Create windows_examples.yml --- .github/workflows/windows_examples.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/windows_examples.yml diff --git a/.github/workflows/windows_examples.yml b/.github/workflows/windows_examples.yml new file mode 100644 index 00000000..b42f8c06 --- /dev/null +++ b/.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 +