docs: update CHANGELOG for IAC unescape bug #9
This file contains 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: Rust | |
on: | |
push: | |
pull_request: | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- run: cargo clippy --locked --all-features -- --deny warnings | |
clippy-nightly: | |
name: Clippy (Nightly) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: clippy | |
- run: cargo clippy --locked --all-features -- --deny warnings | |
docs: | |
name: Check for documentation errors | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: cargo doc | |
run: cargo doc --locked --all-features --no-deps --document-private-items | |
env: | |
RUSTDOCFLAGS: -Dwarnings | |
stable: | |
name: Stable Rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Build (default features) | |
run: cargo build --locked --verbose | |
- name: Run tests (default features) | |
run: cargo test --locked --verbose | |
- name: Build (no default features) | |
run: cargo build --locked --verbose --no-default-features | |
- name: Run tests (no default features) | |
run: cargo test --locked --verbose --no-default-features | |
nightly: | |
name: Nightly Rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install nightly rust toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Build (default features) | |
run: cargo build --locked --verbose | |
- name: Run tests (default features) | |
run: cargo test --locked --verbose | |
- name: Build (no default features) | |
run: cargo build --locked --verbose --no-default-features | |
- name: Run tests (no default features) | |
run: cargo test --locked --verbose --no-default-features |