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 f3fe652 commit 7870e1cCopy full SHA for 7870e1c
.github/workflows/build.yml
@@ -85,6 +85,8 @@ jobs:
85
steps:
86
- name: Checkout source code
87
uses: actions/checkout@v2
88
+ with:
89
+ fetch-depth: 0
90
- name: Install Rust ${{ env.TOOLCHAIN }} toolchain
91
uses: actions-rs/toolchain@v1
92
with:
@@ -96,9 +98,9 @@ jobs:
96
98
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
97
99
git fetch upstream
100
git rebase upstream/main
- - name: `cargo check` each commit
101
+ - name: For each commit, run cargo check (including in fuzz)
102
run: |
- 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
104
git checkout $COMMITHASH
105
cargo check
106
cd fuzz && cargo check --features=stdin_fuzz && cd ..
0 commit comments