File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 12
12
lint :
13
13
name : lint
14
14
runs-on : ubuntu-latest
15
-
16
15
17
16
steps :
18
17
- uses : actions/checkout@v4
30
29
31
30
- name : Run lints
32
31
run : ./scripts/lint
32
+
33
33
test :
34
34
name : test
35
35
runs-on : ubuntu-latest
50
50
51
51
- name : Run tests
52
52
run : ./scripts/test
53
-
Original file line number Diff line number Diff line change 4
4
5
5
cd " $( dirname " $0 " ) /.."
6
6
7
- if [ -f " Brewfile" ] && [ " $( uname -s) " = " Darwin" ]; then
7
+ if ! command -v rye > /dev/null 2>&1 && [ -f " Brewfile" ] && [ " $( uname -s) " = " Darwin" ]; then
8
8
brew bundle check > /dev/null 2>&1 || {
9
9
echo " ==> Installing Homebrew dependencies…"
10
10
brew bundle
Original file line number Diff line number Diff line change @@ -9,4 +9,3 @@ rye run lint
9
9
10
10
echo " ==> Making sure it imports"
11
11
rye run python -c ' import finch'
12
-
You can’t perform that action at this time.
0 commit comments