Re-enable the fuzzer job on PRs (#14953)

## Summary
This reverts https://github.com/astral-sh/ruff/pull/14478

I now broke main twice because I wasn't aware that the API was used by
the fuzzer.

## Test Plan
This commit is contained in:
Micha Reiser
2024-12-13 10:07:27 +01:00
committed by GitHub
parent 2ccc9b19a7
commit 1c8f356e07
2 changed files with 2 additions and 2 deletions

View File

@@ -312,7 +312,7 @@ jobs:
name: "cargo fuzz build"
runs-on: ubuntu-latest
needs: determine_changes
if: ${{ github.ref == 'refs/heads/main' || needs.determine_changes.outputs.fuzz == 'true' }}
if: ${{ github.ref == 'refs/heads/main' || needs.determine_changes.outputs.fuzz == 'true' || needs.determine_changes.outputs.code == 'true' }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4