blob: f135e9465f2257ace0cc852f83c09c2d7fbf9ee7 [file] [edit]
#!/bin/sh
#
# Git pre-push script that runs some quick/simple tests.
#
# This script can be installed using `./boostrap -i`.
set -o errexit
# Keep these check in sync with `ruff` rule in .circleci/config.yml
ruff check -q
ruff check --preview --select=E20,E30,E221,E225,E226