Update changelog #57
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] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| unit-test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| fail-fast: true | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install cargo-llvm-cov | |
| uses: taiki-e/install-action@cargo-llvm-cov | |
| - name: Run tests on Linux or macOS | |
| run: | | |
| cargo llvm-cov --color always --lcov --output-path lcov.info --features=search,termwiz,termion,serde,arbitrary | |
| cargo llvm-cov --color always --no-run | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| - name: Run tests on Windows | |
| run: | | |
| cargo llvm-cov --color always --lcov --output-path lcov.info --features=search,termwiz,serde,arbitrary | |
| cargo llvm-cov --color always --no-run | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| - run: cargo test --no-default-features --features=search -- --skip .rs | |
| - uses: codecov/codecov-action@v4 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy,rustfmt | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: cargo fmt -- --check | |
| - run: cargo clippy --examples --tests -- -D warnings | |
| - run: cargo clippy --examples --tests --features search,serde -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features --features search -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features --features termion -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features --features termion,search -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features --features termwiz -- -D warnings | |
| - run: cargo clippy --examples --tests --no-default-features --features termwiz,search -- -D warnings | |
| - run: cargo rustdoc --features=search,termwiz,termion,serde -p ratatui-textarea -- -D warnings | |
| cargo-doc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - name: Run `cargo rustdoc` with same configuration as docs.rs | |
| run: | | |
| set -e | |
| md="$(cargo metadata --format-version=1 | jq '.packages[] | select(.name=="ratatui-textarea") | .metadata.docs.rs')" | |
| rustdoc_args="$(echo "$md" | jq -r '.["rustdoc-args"] | join(" ")') -D warnings" | |
| features="$(echo "$md" | jq -r '.features | join(",")')" | |
| set -x | |
| for target in $(echo "$md" | jq -r '.targets | join(" ")') | |
| do | |
| rustup target add "$target" | |
| cargo rustdoc -p ratatui-textarea "--features=$features" "--target=$target" -- $rustdoc_args | |
| done |