Skip to content

Change 'git' to 'Git' in tui entry dialog #15

Change 'git' to 'Git' in tui entry dialog

Change 'git' to 'Git' in tui entry dialog #15

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
paths-ignore:
- "docs/**"
pull_request:
branches: [ "main" ]
paths-ignore:
- "docs/**"
env:
CARGO_TERM_COLOR: always
jobs:
clippy_workspace:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets -- -D warnings
rust_fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: |
cargo fmt -- --check
rust_build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: cargo build --all-features --verbose