diff options
Diffstat (limited to '.github/workflows/verify-solution-file.yml')
| -rw-r--r-- | .github/workflows/verify-solution-file.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/verify-solution-file.yml b/.github/workflows/verify-solution-file.yml new file mode 100644 index 000000000..f2dddd97a --- /dev/null +++ b/.github/workflows/verify-solution-file.yml @@ -0,0 +1,25 @@ +name: Verify-VSProjects + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2.3.4 + with: + submodules: 'true' + fetch-depth: '1' + - name: verify + run: | + & .\premake.bat vs2015 + $diff = & git diff + if ($diff.length -ne 0) + { + $diff + throw "error: vs project file verification failed." + } |
