Skip to content

fix: prevent bar from appearing at wrong position on display changes #13

fix: prevent bar from appearing at wrong position on display changes

fix: prevent bar from appearing at wrong position on display changes #13

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all
lint:
name: Lint
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: cargo fmt --all --check
- run: cargo clippy --all -- -D warnings