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 b30088d commit db7ba52Copy full SHA for db7ba52
.github/workflows/main.yml
@@ -100,6 +100,11 @@ jobs:
100
name: Docutils HEAD
101
102
steps:
103
+ - name: Install epubcheck
104
+ run: |
105
+ mkdir /tmp/epubcheck && cd /tmp/epubcheck
106
+ wget https://github.com/w3c/epubcheck/releases/download/v5.1.0/epubcheck-5.1.0.zip
107
+ unzip epubcheck-5.1.0.zip
108
- uses: actions/checkout@v4
109
- name: Set up Python
110
uses: actions/setup-python@v5
@@ -119,6 +124,8 @@ jobs:
119
124
run: python -m pytest -vv
120
125
env:
121
126
PYTHONWARNINGS: "error" # treat all warnings as errors
127
+ DO_EPUBCHECK: "1"
128
+ EPUBCHECK_PATH: "/tmp/epubcheck/epubcheck-5.1.0/epubcheck.jar"
122
129
123
130
latex:
131
runs-on: ubuntu-latest
0 commit comments