We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce92f2 commit 673fec8Copy full SHA for 673fec8
.github/workflows/kani.yml
@@ -109,7 +109,13 @@ jobs:
109
110
# Step 2: Run list on the std library
111
- name: Run Kani List
112
- run: head/scripts/run-kani.sh --run list --path ${{github.workspace}}/head
+ 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
119
120
# Step 3: Add output to job summary
121
- name: Add Kani List output to job summary
0 commit comments