feat: highlight replacement argument names #45
Workflow file for this run
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: Rust Linting | |
| on: | |
| pull_request: | |
| branches: | |
| - mega | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| run: rustup install stable && rustup component add clippy rustfmt | |
| - name: Run lint | |
| run: bash scripts/lint.sh |