Merge pull request #7494 from morehouse/fuzz_ci

github: run fuzz tests with unit tests
This commit is contained in:
Oliver Gugger 2023-05-22 10:14:44 +02:00 committed by GitHub
commit d5f5565e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -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:

View File

@ -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.