mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-17 07:10:37 +00:00
12 lines
166 B
Bash
Executable file
12 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running lints"
|
|
rye run lint
|
|
|
|
echo "==> Making sure it imports"
|
|
rye run python -c 'import cloudflare'
|
|
|