add debug step to CI

This commit is contained in:
crobibero 2021-05-04 17:48:23 -06:00
parent 7b55af4b62
commit ca56c7da2b

View File

@ -48,6 +48,10 @@ jobs:
- name: Build packages
run: dotnet build -c Release
- name: [Debug] Check if generated client files were modified
id: diff
run: echo "$(git status -s | grep cs | grep -v csproj | wc -l)"
- name: Check if generated client files were modified
id: diff
run: echo "::set-output name=count::$(git status -s | grep cs | grep -v csproj | wc -l)"