chore: bump version to 0.3.72 #2254
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: | |
| branches: [main] | |
| pull_request: | |
| branches: [main, beta] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| rust-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: "1.91.0" | |
| components: rustfmt, clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Format Check | |
| run: cargo fmt -- --check | |
| - name: Lint | |
| run: cargo clippy --all-targets -- -D warnings | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Test | |
| run: cargo test --workspace --verbose | |
| - name: Test (feature-gated) | |
| run: | | |
| cargo test -p stakpak-shared --features sqlite --verbose | |
| cargo test -p stakpak --features libsql-test --verbose | |
| cargo test -p stakpak-gateway --features libsql-test --verbose | |
| cargo test -p stakai --features network-tests --verbose |