Remove superfluous run call.

This commit is contained in:
Mario Zechner 2021-08-18 21:08:16 +02:00
parent 111b15e645
commit 12fbdd6fc2

View File

@ -53,10 +53,9 @@ jobs:
export CLANGFORMAT=`pwd`/clang/bin/clang-format
export PATH="$PATH:/root/.dotnet/tools"
./formatters/format.sh
find . -type f -name '*.cs' -exec perl -pi -e 's/\r\n/\n/g' '{}' +
git diff > format-diff.txt
- run: spine-csharp/src/Atlas.cs
find . -type f -name '*.cs' -exec perl -pi -e 's/\r\n/\n/g' '{}' +
git diff
git diff > format-diff.txt
- name: Archive formatting result
uses: actions/upload-artifact@v2