Skip to content

Fix ui related issue in kitty terminal #36

Fix ui related issue in kitty terminal

Fix ui related issue in kitty terminal #36

Workflow file for this run

name: main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Test manga tui
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: setup toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly-2024-06-25
- name: check-fmt
run: cargo fmt --check
- name: check
run: cargo check --locked
- name: build
run: cargo build --release --verbose
- name: test
run: cargo test -- --test-threads=1
- name: clippy
run: cargo clippy -- -D warnings
env:
RUST_BACKTRACE: full