fix: split_long_word incorrectly splits multi-codepoint character #181
Workflow file for this run
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: Code Style | |
on: | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/lint.yml" | |
- "**.rs" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
pull_request: | |
branches: [main] | |
paths: | |
- ".github/workflows/lint.yml" | |
- "**.rs" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
jobs: | |
test: | |
name: Tests on ${{ matrix.os }} for ${{ matrix.toolchain }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: cargo build | |
run: cargo build | |
- name: cargo fmt | |
run: cargo fmt --all -- --check | |
- name: cargo fmt | |
run: cargo fmt --all -- --check | |
- name: cargo clippy | |
run: cargo clippy --tests -- -D warnings | |
- name: cargo clippy without default features | |
run: cargo clippy --no-default-features --tests -- -D warnings | |
# Only run taplo on linux to save some time. | |
# Also, taplo is broken on windows for some reason. | |
- name: Install taplo-cli | |
run: cargo install taplo-cli | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run taplo check | |
run: ~/.cargo/bin/taplo format --check | |
if: matrix.os == 'ubuntu-latest' |