Reproduce setup in worktrees and Codex cloud #13
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: Fallow audit | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Audit changed code | |
| uses: fallow-rs/fallow@v3 | |
| with: | |
| command: audit | |
| fail-on-issues: true |