Make the landing quick start actionable #216
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Changed-code Fallow audit (not full project health) | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| changed-code-audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Audit changed code (not full project health) | |
| uses: fallow-rs/fallow@v3 | |
| with: | |
| command: audit | |
| fail-on-issues: true |