File: check

package info (click to toggle)
pysequoia 0.1.29-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 652 kB
  • sloc: sh: 22; python: 20; makefile: 11
file content (11 lines) | stat: -rwxr-xr-x 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

set -euxo pipefail

# Move faster checks near the top of this script.  For example
# codespell is very fast. cargo fmt does not need to download crates etc.

codespell
cargo fmt -- --check
cargo clippy --all -- -D warnings
cargo test --all