justfile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import "./misc/justfile.custom.just"
  2. import "./misc/test.just"
  3. alias b := build
  4. alias c := check
  5. alias t := test
  6. default:
  7. @just --list
  8. final-check: typos format clippy test
  9. # run `cargo build` on everything
  10. build *ARGS="--workspace --all-targets":
  11. #!/usr/bin/env bash
  12. set -euo pipefail
  13. if [ ! -f Cargo.toml ]; then
  14. cd {{invocation_directory()}}
  15. fi
  16. cargo build {{ARGS}}
  17. # run `cargo check` on everything
  18. check *ARGS="--workspace --all-targets":
  19. #!/usr/bin/env bash
  20. set -euo pipefail
  21. if [ ! -f Cargo.toml ]; then
  22. cd {{invocation_directory()}}
  23. fi
  24. cargo check {{ARGS}}
  25. # run code formatters
  26. format:
  27. #!/usr/bin/env bash
  28. set -euo pipefail
  29. if [ ! -f Cargo.toml ]; then
  30. cd {{invocation_directory()}}
  31. fi
  32. cargo fmt --all
  33. nixpkgs-fmt $(echo **.nix)
  34. # run tests
  35. test: build
  36. #!/usr/bin/env bash
  37. set -euo pipefail
  38. if [ ! -f Cargo.toml ]; then
  39. cd {{invocation_directory()}}
  40. fi
  41. cargo test --lib
  42. # Run pure integration tests
  43. cargo test -p cdk-integration-tests --test integration_tests_pure
  44. # run `cargo clippy` on everything
  45. clippy *ARGS="--locked --offline --workspace --all-targets":
  46. cargo clippy {{ARGS}}
  47. # run `cargo clippy --fix` on everything
  48. clippy-fix *ARGS="--locked --offline --workspace --all-targets":
  49. cargo clippy {{ARGS}} --fix
  50. typos:
  51. typos
  52. # fix all typos
  53. [no-exit-message]
  54. typos-fix:
  55. just typos -w