diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-10-07 15:14:34 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:41:30 +0100 |
| commit | abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c (patch) | |
| tree | 45c4064fec80df52359cc5e4a7c73596fb6021f0 /.github/workflows | |
| parent | 9e148a4b216f349eb277aa029397139ba9d4994e (diff) | |
| download | tools.nes-abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c.tar.gz tools.nes-abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c.zip | |
ci: Add fuzzy testing to the parser
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66fcaa8..818c8bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ env: RUSTFLAGS: "-Dwarnings" jobs: - clippy_check: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -20,3 +20,8 @@ jobs: - name: Run Clippy run: cargo clippy --all-targets --all-features + + - name: Fuzzy testing + run: | + cd lib/xixanta + cargo +nightly fuzz run fuzz_target_1 -- -max_total_time=180 |
