Skip to content

Commit 3a0df04

Browse files
authored
Merge pull request #142 from SkySkimmer/diff-u
Use diff -u in tests
2 parents 74ced1b + dc71e72 commit 3a0df04

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker-action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
image:
20-
- 'coqorg/coq:dev'
19+
coq_version:
20+
- 'dev'
2121
fail-fast: false
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- uses: coq-community/docker-coq-action@v1
2525
with:
2626
opam_file: 'coq-dpdgraph.opam'
27-
custom_image: ${{ matrix.image }}
27+
coq_version: ${{ matrix.coq_version }}
2828
export: 'OPAMWITHTEST'
2929
env:
3030
OPAMWITHTEST: 'true'

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ test-suite:
170170
if grep DIFFERENCES tmp.log >/dev/null 2>&1 ; then \
171171
for i in $$(grep DIFFERENCES tmp.log | grep -o 'diff .*' | sed s'/diff //g' | sed s'/ /~/g'); do \
172172
i="$$(echo "$$i" | sed s'/~/ /g')"; \
173-
echo diff $$i; \
174-
diff $$i; \
173+
echo diff -u $$i; \
174+
diff -u $$i; \
175175
done ; \
176176
fi
177177
if grep DIFFERENCES tmp.log >/dev/null 2>&1 ; then false ; else true ; fi

0 commit comments

Comments
 (0)