File tree 4 files changed +8
-15
lines changed
4 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -25,20 +25,10 @@ jobs:
25
25
RYE_INSTALL_OPTION : ' --yes'
26
26
27
27
- name : Install dependencies
28
- run : |
29
- rye sync --all-features
30
-
31
- - name : Run ruff
32
- run : |
33
- rye run check:ruff
28
+ run : rye sync --all-features
34
29
35
- - name : Run type checking
36
- run : |
37
- rye run typecheck
38
-
39
- - name : Ensure importable
40
- run : |
41
- rye run python -c 'import finch'
30
+ - name : Run lints
31
+ run : ./scripts/lint
42
32
test :
43
33
name : test
44
34
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 4
4
5
5
cd " $( dirname " $0 " ) /.."
6
6
7
+ echo " ==> Running formatters"
7
8
rye run format
8
-
Original file line number Diff line number Diff line change 4
4
5
5
cd " $( dirname " $0 " ) /.."
6
6
7
+ echo " ==> Running lints"
7
8
rye run lint
8
9
10
+ echo " ==> Making sure it imports"
11
+ rye run python -c ' import finch'
12
+
Original file line number Diff line number Diff line change 52
52
echo
53
53
fi
54
54
55
- # Run tests
56
55
echo " ==> Running tests"
57
56
rye run pytest " $@ "
You can’t perform that action at this time.
0 commit comments