We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9fdc25 commit 8e959b7Copy full SHA for 8e959b7
.github/workflows/ci.yml
@@ -45,10 +45,11 @@ jobs:
45
echo "::error title={No Output}::Test run for Niwot site failed to produce output"
46
exit 1
47
# check whether niwot.out has changed
48
- - name: Check whether niwot.out has changed
+ - name: Check whether niwot.out has changed
49
+ if: runner.os != 'Windows' #fails b/c line endings?
50
shell: bash
51
run: |
- if git diff --exit-code --ignore-cr-at-eol Sites/Niwot/niwot.out; then
52
+ if git diff --exit-code Sites/Niwot/niwot.out; then
53
echo "Success: Niwot.out created and has not changed"
54
else
55
echo "::error title={Output Changed}::The test file niwot.out has changed"
0 commit comments