Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
6774349
feat: added utils subpackage to have shared functions
keys-i Nov 23, 2025
93c7954
feat: file utils are in subpackage file_utils
keys-i Nov 24, 2025
231c79d
feat: directory utils and its constants are in subpackage constants a…
keys-i Nov 24, 2025
28e847a
feat: added a stub for additional helpers, connected my utils refacto…
keys-i Nov 24, 2025
f7ba144
feat: refactored helpers into utils::helpers which made them cleaner …
keys-i Nov 24, 2025
f9fef5f
feat: made main function to map all the commands and made commands su…
keys-i Nov 26, 2025
2ef5fb7
feat: added tests for help command using snapshot files
keys-i Nov 26, 2025
cccb6fe
feat: migrated default command as well as fixed minor linking/naming …
keys-i Nov 26, 2025
54f9aae
feat: migrated current command to be rust idomatic and added proper f…
keys-i Nov 26, 2025
0cbac12
feat: migrated uninstall command to be rust idomatic and added proper…
keys-i Nov 27, 2025
0f3c1e8
feat: migrated last command home to be rust idomatic and added proper…
keys-i Nov 27, 2025
c276ca6
feat: fixed test cases to be more complete for the migrated public CL…
keys-i Nov 27, 2025
ffaaead
feat: made a github action to verify code prod ready by using clippy,…
keys-i Nov 27, 2025
ad0fb65
feat: added rustdocs to make it more manageable add easier to test as…
keys-i Nov 27, 2025
db931ed
feat: change this to make utils to be OS-agnostic
keys-i Nov 27, 2025
30b5630
feat: fixed version test cases to work on windows as well to work on …
keys-i Nov 28, 2025
bfe800c
chore: upgraded dependencies to be latest
keys-i Nov 29, 2025
f648537
Merge branch 'master' into master
keys-i Dec 24, 2025
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
82 changes: 82 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: ci

on:
push:
branches: ["main", "master"]
pull_request:
branches: ["main", "master"]

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

env:
CARGO_TERM_COLOR: always

jobs:
test:
name: test (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2
with:
cache-targets: "false"

- name: fmt
if: matrix.os == 'ubuntu-latest'
run: cargo fmt --all -- --check

- name: check
if: matrix.os == 'ubuntu-latest'
run: cargo check --all-targets --all-features

- name: clippy
if: matrix.os == 'ubuntu-latest'
run: cargo clippy --all-targets --all-features -- -D warnings

- name: test
run: cargo test

- name: test (all features)
if: matrix.os == 'ubuntu-latest'
run: cargo test --all-features

- name: doc
if: matrix.os == 'ubuntu-latest'
env:
RUSTDOCFLAGS: "-D warnings"
run: cargo doc --no-deps --all-features

audit:
name: audit
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
with:
cache-targets: "false"

- uses: taiki-e/install-action@v2
with:
tool: cargo-audit

- name: audit
run: cargo audit
47 changes: 0 additions & 47 deletions .github/workflows/pull_request.yml

This file was deleted.

Loading
Loading