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 c007911 commit ef0d01eCopy full SHA for ef0d01e
.github/workflows/cd.yml
@@ -63,7 +63,7 @@ jobs:
63
- name: Analyze contracts with Mythril
64
if: steps.changed-sol-files.outputs.any_changed == 'true'
65
run: |
66
- for file in $CHANGED_FILES; do
+ for file in contracts/*.sol; do
67
myth analyze --solc-json mythril.config.json "$file" &
68
done
69
wait
contracts/Timers.sol
@@ -3,7 +3,7 @@
3
pragma solidity 0.8.28;
4
5
/**
6
- * FIXME: CI test
+ * FIXME: CI test.
7
*/
8
library Timers {
9
struct BlockNumber {
0 commit comments