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