smart-string: true try_ APIs + truncated/expect_capacity editing #3
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: | |
| jobs: | |
| policy: | |
| name: policy (no Cargo.lock) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Fail if Cargo.lock is committed | |
| run: | | |
| set -euo pipefail | |
| if git ls-files | grep -Eq '(^|/)Cargo\.lock$'; then | |
| echo "error: Cargo.lock must not be committed in library repositories (it should be gitignored)." >&2 | |
| exit 1 | |
| fi | |
| fmt: | |
| name: fmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rustfmt | |
| - name: cargo fmt (check) | |
| run: cargo +nightly fmt --all -- --check | |
| test: | |
| name: check / test / clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - name: cargo check | |
| run: cargo check --all-targets | |
| - name: cargo test | |
| run: cargo test | |
| - name: cargo clippy | |
| run: cargo clippy --all-targets -- -D warnings | |
| msrv: | |
| name: msrv (rustc 1.59.0) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: dtolnay/rust-toolchain@1.59.0 | |
| - name: cargo test (stable cargo + MSRV rustc) | |
| run: | | |
| set -euo pipefail | |
| SYSROOT="$(rustc +1.59.0 --print sysroot)" | |
| RUSTC="$SYSROOT/bin/rustc" \ | |
| RUSTDOC="$SYSROOT/bin/rustdoc" \ | |
| cargo +stable test | |