File tree 2 files changed +17
-6
lines changed
2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,25 @@ jobs:
42
42
uses : actions/checkout@v4
43
43
with :
44
44
repository : scala/scala
45
- ref : v2.13.10
45
+ ref : v2.13.14
46
46
path : scala_scala
47
47
48
- - name : checkout lampepfl/dotty
48
+ - name : checkout scala/scala3
49
49
if : ${{ runner.os == 'Linux' }}
50
50
uses : actions/checkout@v4
51
51
with :
52
- repository : lampepfl/dotty
53
- ref : 3.3.0
52
+ repository : scala/scala3
53
+ ref : 3.5.0-RC2
54
54
path : dotty
55
55
56
+ - name : checkout lichess-org/lila
57
+ if : ${{ runner.os == 'Linux' }}
58
+ uses : actions/checkout@v4
59
+ with :
60
+ repository : lichess-org/lila
61
+ ref : 83e61b9ef617164fe1d3a5112fcc611d0e5a7ea9
62
+ path : lila
63
+
56
64
- name : checkout nvim-treesitter/nvim-treesitter
57
65
if : ${{ runner.os == 'Linux' }}
58
66
uses : actions/checkout@v4
93
101
env :
94
102
SCALA_SCALA_DIR : scala_scala
95
103
DOTTY_DIR : dotty
104
+ LILA_DIR : lila
96
105
run : script/smoke_test.sh
97
106
98
107
- name : copy nvim-treesitter queries
Original file line number Diff line number Diff line change 3
3
# This is an integration test to generally check the quality of parsing.
4
4
5
5
SCALA_SCALA_LIBRARY_EXPECTED=100
6
- SCALA_SCALA_COMPILER_EXPECTED=97
7
- DOTTY_COMPILER_EXPECTED=85
6
+ SCALA_SCALA_COMPILER_EXPECTED=96
7
+ DOTTY_COMPILER_EXPECTED=83
8
+ LILA_MODULES_EXPECTED=84
8
9
SYNTAX_COMPLEXITY_CEILING=1400
9
10
10
11
if [ ! -d " $SCALA_SCALA_DIR " ]; then
@@ -77,6 +78,7 @@ check_complexity () {
77
78
run_tree_sitter " $SCALA_SCALA_DIR /src/library/" $SCALA_SCALA_LIBRARY_EXPECTED scala2-library
78
79
run_tree_sitter " $SCALA_SCALA_DIR /src/compiler/" $SCALA_SCALA_COMPILER_EXPECTED scala2-compiler
79
80
run_tree_sitter " $DOTTY_DIR /compiler/" $DOTTY_COMPILER_EXPECTED dotty-compiler
81
+ run_tree_sitter " $LILA_DIR /modules/" $LILA_MODULES_EXPECTED lila-modules
80
82
81
83
check_complexity $SYNTAX_COMPLEXITY_CEILING
82
84
You can’t perform that action at this time.
0 commit comments