Skip to content

Add CLI command 'session-path' to display the location of session.json #13

Add CLI command 'session-path' to display the location of session.json

Add CLI command 'session-path' to display the location of session.json #13

Workflow file for this run

name: Rust CI (Light)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Check compilation
run: cargo check
- name: Build release binary
run: cargo build --release
- name: Clippy (non-blocking)
run: cargo clippy --all-targets || true