Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- 'internal/**'
- 'tests/**'
- 'benches/**'
- 'cli/**'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/workflows/core.yml'
Expand All @@ -19,6 +20,7 @@ on:
- 'internal/**'
- 'tests/**'
- 'benches/**'
- 'cli/**'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/workflows/core.yml'
Expand Down Expand Up @@ -59,3 +61,9 @@ jobs:

- name: Build library
run: cargo build

- name: Run hygiene check (cli)
run: cargo run --bin cougr -- check --path .

- name: Run verified check (canonical examples)
run: cargo run --bin cougr -- check --path . --verified --canonical-only
189 changes: 189 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"internal/cougr-core-circuits",
"internal/cougr-core-session",
"internal/cougr-core-test",
"cli",
]
resolver = "2"

Expand Down
18 changes: 18 additions & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "cougr-cli"
version = "0.1.0"
edition = "2021"
description = "Cougr CLI — hygiene and development tooling for the Cougr ECS framework"
license = "MIT"
publish = false

[[bin]]
name = "cougr"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
regex = "1"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading
Loading