We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60eda1 commit 9c44192Copy full SHA for 9c44192
.github/workflows/ci.yml
@@ -29,6 +29,7 @@ jobs:
29
30
- name: Run lints
31
run: ./scripts/lint
32
+
33
test:
34
name: test
35
runs-on: ubuntu-latest
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