diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 894f65387..43ef4b815 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -167,6 +167,15 @@ jobs: - name: git checkout uses: actions/checkout@v3 + - name: git checkout fuzzing seeds + uses: actions/checkout@v3 + with: + repository: lightninglabs/lnd-fuzz + path: lnd-fuzz + + - name: rsync fuzzing seeds + run: rsync -a --ignore-existing lnd-fuzz/ ./ + - name: setup go ${{ env.GO_VERSION }} uses: ./.github/actions/setup-go with: diff --git a/docs/release-notes/release-notes-0.17.0.md b/docs/release-notes/release-notes-0.17.0.md index 5def17cdc..e1d9f96f3 100644 --- a/docs/release-notes/release-notes-0.17.0.md +++ b/docs/release-notes/release-notes-0.17.0.md @@ -67,6 +67,9 @@ unlock or create. ## Testing +* [Started](https://github.com/lightningnetwork/lnd/pull/7494) running fuzz + tests in CI. + * [Added fuzz tests](https://github.com/lightningnetwork/lnd/pull/7649) for signature parsing and conversion.