diff options
| author | Ray <[email protected]> | 2021-03-08 19:17:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-08 19:17:42 +0100 |
| commit | 55bf595cae484e942489e0f8bd48811af9b0bb44 (patch) | |
| tree | 46a612905fd4e61a215ff84b79d1a250bcf97ae4 /.github | |
| parent | 955d4d3d1a38d5498ac732e2a128a649ec4d5866 (diff) | |
| download | raylib-55bf595cae484e942489e0f8bd48811af9b0bb44.tar.gz raylib-55bf595cae484e942489e0f8bd48811af9b0bb44.zip | |
Create windows_examples.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/windows_examples.yml | 26 |
1 files changed, 26 insertions, 0 deletions
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 + |
