From 8781203fcaa1fd601af2341887aa3a57221cac92 Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Fri, 8 Nov 2024 07:40:07 -0800 Subject: [PATCH] CI: lint fuzz as part of the main lint job. The previous state was a leftover from when linting was part of the build job. --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ca3aee80..28081439b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -317,7 +317,7 @@ jobs: run: cargo build --package xtask - name: Lint - run: cargo xtask --scope=only-normal lint --timings + run: cargo xtask --scope=all lint --timings - run: df -h . @@ -538,10 +538,6 @@ jobs: path: | fuzz/corpus - - name: Lint - # We run lint because otherwise the fuzz code won't get linted. - run: cargo xtask --scope=only-fuzz lint - - name: Fuzz # Note: The specified timeout value is per-fuzz-target; as of this writing # there are 6 fuzz targets and so the total time will be 720 seconds = 12 minutes.