Skip to content

Commit

Permalink
justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 19, 2024
1 parent 0aa7864 commit 06795da
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ YUGABYTE_LATEST_CHINOOK_NDC_METADATA := "static/yugabyte/v5-configuration"
# just --set CONNECTOR_IMAGE_TAG dev-main <targets>

# check everything
check: format-check find-unused-dependencies build lint test
check: audit format-check find-unused-dependencies build lint test

# run the connector
run: start-dependencies
Expand Down Expand Up @@ -273,6 +273,14 @@ lint *FLAGS:
lint-apply *FLAGS:
cargo clippy --all-targets --all-features --fix {{FLAGS}}

# run `cargo audit`
audit:
cargo audit

# run `cargo audit fix`
audit-fix:
cargo audit fix

# reformat everything
format:
cargo fmt --all
Expand Down

0 comments on commit 06795da

Please sign in to comment.