Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

fix(test): Testing interactive mode #18

fix(test): Testing interactive mode

fix(test): Testing interactive mode #18

Workflow file for this run

# GitHub Actions workflow for building and testing the Rust CLI
name: Rust CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set git default branch to main
run: git config --global init.defaultBranch main
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose