We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5168c56 commit 3c7a249Copy full SHA for 3c7a249
.github/workflows/ci.yml
@@ -12,7 +12,6 @@ jobs:
12
lint:
13
name: lint
14
runs-on: ubuntu-latest
15
-
16
17
steps:
18
- uses: actions/checkout@v4
@@ -30,5 +29,3 @@ jobs:
30
29
31
- name: Run lints
32
run: ./scripts/lint
33
34
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 codex'
0 commit comments