General Refactor #311
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: Code quality and sanity | |
| on: | |
| push: | |
| branches: [main, dev, develop] | |
| pull_request: | |
| branches: [main, dev, develop] | |
| jobs: | |
| clippy: | |
| name: Lint with Clippy | |
| runs-on: ubuntu-latest | |
| env: | |
| RUSTFLAGS: -Dwarnings | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Caching project dependencies | |
| id: project-cache | |
| uses: Swatinem/rust-cache@v2 | |
| - uses: hecrj/setup-rust-action@v1 | |
| with: | |
| components: clippy | |
| - run: cargo clippy --workspace --all-targets --all-features | |
| rustfmt: | |
| name: Verify code formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Caching project dependencies | |
| id: project-cache | |
| uses: Swatinem/rust-cache@v2 | |
| - uses: hecrj/setup-rust-action@v1 | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --all -- --check | |
| check-rustdoc-links: | |
| name: Check intra-doc links | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| crate: [canyon_core, canyon_crud, canyon_macros, canyon_entities, canyon_migrations] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Caching project dependencies | |
| id: project-cache | |
| uses: Swatinem/rust-cache@v2 | |
| - uses: hecrj/setup-rust-action@v1 | |
| with: | |
| rust-version: nightly | |
| - run: cargo rustdoc --target=x86_64-unknown-linux-gnu -p ${{ matrix.crate }} --all-features -- -D warnings |