main
 1#!/usr/bin/env bash
 2
 3set -e
 4
 5cd "$(dirname "$0")/.."
 6
 7echo "==> Running lints"
 8rye run lint
 9
10echo "==> Making sure it imports"
11rye run python -c 'import openai'