We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5c5b8 commit 26ca476Copy full SHA for 26ca476
.github/workflows/kani.yml
@@ -65,3 +65,13 @@ jobs:
65
- name: Test Kani script (In Repo Directory)
66
working-directory: ${{github.workspace}}/head
67
run: scripts/run-kani.sh --kani-args --harness ptr::verify::check_read_u128 --harness ptr --output-format=terse
68
+
69
+ # Step 3: Run list on the std library (assumes it creates kani_list.txt)
70
+ - name: Run Kani List
71
+ uses: actions/github-script@v6
72
+ with:
73
+ script: |
74
+ head/scripts/run-kani.sh --run list --path ${{github.workspace}}/head;
75
+ const fs = require('fs');
76
+ const kaniOutput = fs.readFileSync('${{github.workspace}}/head/kani_list.txt', 'utf8');
77
+ kaniOutput >> "$GITHUB_STEP_SUMMARY";
.github/workflows/list.yml
0 commit comments