Skip to content

Commit a1bbbbb

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

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/kani.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,14 @@ 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
113-
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/ +/ /g' ${{github.workspace}}/head/kani-list.md
118+
ls -l ${{github.workspace}}/head/kani-list.md
119+
114120
# Step 3: Add output to job summary
115121
- name: Add Kani List output to job summary
116122
uses: actions/github-script@v6

0 commit comments

Comments
 (0)