docs(site): animated grainient hero, glass-pill navbar, chain-link lo… #50
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 | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: fmt + clippy + build + test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Cache cargo build | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Clippy | |
| run: cargo clippy --features sqlx_mysql,sqlx_postgres,sqlx_sqlite,uuid,chrono,json,decimal --all-targets -- -D warnings | |
| - name: Build (no default features) | |
| run: cargo build --no-default-features | |
| - name: Test | |
| run: cargo test --features sqlx_mysql,sqlx_postgres,sqlx_sqlite,uuid,chrono,json,decimal |