Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ jobs:
- name: Test
run: cargo test --locked --verbose

msrv:
name: test (msrv 1.85.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.85.0
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --locked --verbose
- name: Test
run: cargo test --locked --verbose

lint:
name: fmt & clippy
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ edition = "2024"
rust-version = "1.85"
license = "MIT"
description = "QuickRunner (qr) is a blazing-fast, AI-augmented developer shell helper."
repository = "https://github.com/baanish/quick-runner"
homepage = "https://github.com/baanish/quick-runner"
readme = "README.md"
keywords = ["cli", "developer-tools", "shell", "ai", "rust"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "qr"
Expand Down
Loading