File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -121,4 +121,33 @@ jobs:
121
121
run : |
122
122
pip install nox
123
123
nox -s type_check-${{ matrix.python-version }}
124
-
124
+
125
+ lint :
126
+ name : " Linting"
127
+ needs : build-iqtree
128
+ runs-on : ${{ matrix.os }}
129
+
130
+ strategy :
131
+ matrix :
132
+ python-version : ["3.12"]
133
+ os : [ubuntu-latest]
134
+
135
+ steps :
136
+ - uses : " actions/checkout@v4"
137
+ with :
138
+ fetch-depth : 0
139
+
140
+ - uses : " actions/setup-python@v5"
141
+ with :
142
+ python-version : " ${{ matrix.python-version }}"
143
+
144
+ - uses : actions/cache/restore@v4
145
+ with :
146
+ key : libiqtree-${{ matrix.os }}-${{ env.IQ_TREE_2_SHA }}
147
+ path : src/piqtree2/_libiqtree/libiqtree2.a
148
+ fail-on-cache-miss : true
149
+
150
+ - name : " Run Type Checking for ${{ matrix.python-version }}"
151
+ run : |
152
+ pip install nox
153
+ nox -s ruff-${{ matrix.python-version }}
You can’t perform that action at this time.
0 commit comments