File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 78
78
token : f421b687-4dc2-4387-ac3d-dc3b2528af57
79
79
fail_ci_if_error : true
80
80
81
+ check_commits :
82
+ runs-on : ubuntu-latest
83
+ env :
84
+ TOOLCHAIN : stable
85
+ steps :
86
+ - name : Checkout source code
87
+ uses : actions/checkout@v2
88
+ - name : Install Rust ${{ env.TOOLCHAIN }} toolchain
89
+ uses : actions-rs/toolchain@v1
90
+ with :
91
+ toolchain : ${{ env.TOOLCHAIN }}
92
+ override : true
93
+ profile : minimal
94
+ - name : Fetch full tree and rebase on upstream
95
+ run : |
96
+ git remote add upstream https://github.com/rust-bitcoin/rust-lightning
97
+ git fetch upstream
98
+ git rebase upstream/main
99
+ - name : ` cargo check` each commit
100
+ run : |
101
+ for COMMITHASH in git log --format=format:%H upstream/main...HEAD; do
102
+ git checkout $COMMITHASH
103
+ cargo check
104
+ cd fuzz && cargo check --features=stdin_fuzz && cd ..
105
+ done
106
+
81
107
fuzz :
82
108
runs-on : ubuntu-latest
83
109
env :
You can’t perform that action at this time.
0 commit comments