Skip to content

Commit ef0d01e

Browse files
committed
chore: improve CI workflows
1 parent c007911 commit ef0d01e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Analyze contracts with Mythril
6464
if: steps.changed-sol-files.outputs.any_changed == 'true'
6565
run: |
66-
for file in $CHANGED_FILES; do
66+
for file in contracts/*.sol; do
6767
myth analyze --solc-json mythril.config.json "$file" &
6868
done
6969
wait

contracts/Timers.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pragma solidity 0.8.28;
44

55
/**
6-
* FIXME: CI test
6+
* FIXME: CI test.
77
*/
88
library Timers {
99
struct BlockNumber {

0 commit comments

Comments
 (0)