We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 195e400 commit 89e1631Copy full SHA for 89e1631
.github/workflows/tests.yml
@@ -135,3 +135,36 @@ jobs:
135
*.css
136
137
138
+ other-tests:
139
+ runs-on: ubuntu-latest
140
+ strategy:
141
+ steps:
142
+ - uses: actions/checkout@v4
143
+
144
+ - name: Install apt stuff and other dependencies
145
+ shell: bash
146
+ run: |
147
+ sudo apt update -y
148
+ sudo apt install -y \
149
+ asciidoctor \
150
+ language-pack-en \
151
+ ruby-coderay \
152
+ ruby-pygments.rb \
153
+ tree \
154
+ xmllint
155
+ pip install uv
156
157
+ - name: Install Python requirements.txt into virtualenv
158
159
160
+ make .venv/bin
161
162
+ - name: Run unit tests
163
164
165
+ make unit-test
166
167
+ - name: Run xml linter
168
169
170
+ make xmllint_book
0 commit comments