Compare commits
No commits in common. "1da57177dfbaf30ceedc8afb5337d252d19fa495" and "070957be5af501cd955033962db2159c2ac2c873" have entirely different histories.
1da57177df
...
070957be5a
2 changed files with 3 additions and 13 deletions
|
|
@ -10,14 +10,6 @@ env:
|
|||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
formatting:
|
||||
name: hem - Build & Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Rust
|
||||
uses: https://github.com/dtolnay/rust-toolchain@1.88
|
||||
- run: cargo fmt --check
|
||||
build_and_test:
|
||||
name: hem - Build & Test
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
#![expect(dead_code)]
|
||||
|
||||
use clap::Parser;
|
||||
|
||||
mod cli;
|
||||
|
|
@ -7,10 +5,10 @@ mod expr;
|
|||
|
||||
fn main() -> miette::Result<()> {
|
||||
let args = cli::Args::parse();
|
||||
let _input_delim = args.delimiter();
|
||||
let _input = args.input();
|
||||
let input_delim = args.delimiter();
|
||||
let input = args.input();
|
||||
|
||||
let _expression = expr::parse(&args.expression)?;
|
||||
let expression = expr::parse(&args.expression)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue