We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4614ab4 commit 19140a1Copy full SHA for 19140a1
1 file changed
.github/workflows/test.yml
@@ -9,12 +9,20 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
-
+
13
steps:
14
+ - name: Disable man-db to speed up pandoc install
15
+ run: |
16
+ echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null
17
+ sudo dpkg-reconfigure man-db
18
19
+ - name: Install Pandoc
20
+ uses: pandoc/actions/setup@v1
21
22
- uses: actions/checkout@v4
23
24
- name: Install uv
- uses: astral-sh/setup-uv@v3
25
+ uses: astral-sh/setup-uv@v6
26
with:
27
version: "latest"
28
0 commit comments