Skip to content

perf: terminal cells #87

perf: terminal cells

perf: terminal cells #87

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
types:
- opened
- reopened
- synchronize
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check formatting
run: cargo fmt --all -- --check
# - name: Clippy lint
# run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --all