move cli utility into repository

This commit also adds the `--workspace`` flag to the automated build and test scripts
This commit is contained in:
Henry Schimke
2023-03-01 08:46:49 -06:00
parent 8fc0e1029c
commit edc8e67685
7 changed files with 920 additions and 4 deletions

View File

@@ -17,8 +17,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --release --verbose
run: cargo check --workspace --release --verbose
- name: Build
run: cargo build --release --verbose
run: cargo build --workspace --release --verbose
- name: Run tests
run: cargo test --release --verbose
run: cargo test --workspace --release --verbose