This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Publish v0.1.1 post-updates and cleanup (#111) #311
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: lint | |
| jobs: | |
| fmt: | |
| name: rust fmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set default toolchain | |
| run: rustup default nightly | |
| - name: Set profile | |
| run: rustup set profile minimal | |
| - name: Add rustfmt | |
| run: rustup component add rustfmt | |
| - name: Add clippy | |
| run: rustup component add clippy | |
| - name: Update toolchain | |
| run: rustup update | |
| - name: Check fmt | |
| run: cargo fmt --all -- --check | |
| - name: Clippy | |
| run: cargo clippy --all-targets --all-features -- -D warnings |