Skip to content

Commit 7870e1c

Browse files
committed
test
1 parent f3fe652 commit 7870e1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ jobs:
8585
steps:
8686
- name: Checkout source code
8787
uses: actions/checkout@v2
88+
with:
89+
fetch-depth: 0
8890
- name: Install Rust ${{ env.TOOLCHAIN }} toolchain
8991
uses: actions-rs/toolchain@v1
9092
with:
@@ -96,9 +98,9 @@ jobs:
9698
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
9799
git fetch upstream
98100
git rebase upstream/main
99-
- name: `cargo check` each commit
101+
- name: For each commit, run cargo check (including in fuzz)
100102
run: |
101-
for COMMITHASH in git log --format=format:%H upstream/main...HEAD; do
103+
for COMMITHASH in `git log --format=format:%H upstream/main...HEAD`; do
102104
git checkout $COMMITHASH
103105
cargo check
104106
cd fuzz && cargo check --features=stdin_fuzz && cd ..

0 commit comments

Comments
 (0)