We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9824d2 commit 46ad497Copy full SHA for 46ad497
.github/workflows/ci.yml
@@ -30,6 +30,7 @@ jobs:
30
31
- name: Run lints
32
run: ./scripts/lint
33
+
34
test:
35
name: test
36
runs-on: ubuntu-latest
@@ -51,4 +52,3 @@ jobs:
51
52
53
- name: Run tests
54
run: ./scripts/test
-
scripts/bootstrap
@@ -4,7 +4,7 @@ set -e
4
5
cd "$(dirname "$0")/.."
6
7
-if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
+if ! command -v rye >/dev/null 2>&1 && [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
8
brew bundle check >/dev/null 2>&1 || {
9
echo "==> Installing Homebrew dependencies…"
10
brew bundle
scripts/lint
@@ -9,4 +9,3 @@ rye run lint
echo "==> Making sure it imports"
11
rye run python -c 'import openai'
12
0 commit comments