Clean up CI pipelines #1
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: CI - Lint | ||
| on: | ||
| pull_request: | ||
| jobs: | ||
| lint: | ||
| name: PR Checks | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
|
Check failure on line 11 in .github/workflows/ci-lint.yaml
|
||
| submodules: recursive | ||
| token: ${{ secrets.GH_TOKEN }} | ||
| - name: Install rust | ||
| run: | | ||
| rustup -V | ||
| rustup set profile minimal | ||
| rustup toolchain install stable | ||
| rustup show | ||
| - name: Check Formatting | ||
| run: cargo fmt --check --all | ||
| - name: Clippy | ||
| run: cargo clippy --check --workspace --all-features | ||