Skip to content

fix(ci): make large-write terminal test resilient to PTY buffer size #15

fix(ci): make large-write terminal test resilient to PTY buffer size

fix(ci): make large-write terminal test resilient to PTY buffer size #15

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: macos-latest
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: fmt
if: matrix.os == 'ubuntu-latest'
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --workspace --all-targets --target ${{ matrix.target }} -- -D warnings
- name: test
run: cargo test --workspace --all-targets --target ${{ matrix.target }}