Skip to content

Commit 673fec8

Browse files
committed
Squash duplicate space in markdown file
1 parent 2ce92f2 commit 673fec8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/kani.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,13 @@ jobs:
109109

110110
# Step 2: Run list on the std library
111111
- name: Run Kani List
112-
run: head/scripts/run-kani.sh --run list --path ${{github.workspace}}/head
112+
run: |
113+
head/scripts/run-kani.sh --run list --path ${{github.workspace}}/head
114+
# remove duplicate white space to reduce file size (GitHub permits at
115+
# most one 1MB)
116+
ls -l ${{github.workspace}}/head/kani-list.md
117+
perl -p -i -e 's/\s+/ /g' ${{github.workspace}}/head/kani-list.md
118+
ls -l ${{github.workspace}}/head/kani-list.md
113119
114120
# Step 3: Add output to job summary
115121
- name: Add Kani List output to job summary

0 commit comments

Comments
 (0)