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 2ce92f2 commit a1bbbbbCopy full SHA for a1bbbbb
.github/workflows/kani.yml
@@ -109,8 +109,14 @@ 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
113
-
+ run: |
+ 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
119
+
120
# Step 3: Add output to job summary
121
- name: Add Kani List output to job summary
122
uses: actions/github-script@v6
0 commit comments