run.sh 201 B

123456789101112
  1. #!/bin/bash
  2. set -euo pipefail
  3. IFS=$'\n\t'
  4. rustup component add rustfmt clippy
  5. ci/check-nightly-version.sh
  6. cargo test
  7. cargo fmt -- --check
  8. cargo clippy -- -Dwarnings
  9. docker build -t rust-triagebot .