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 8745c4c commit 2bb42e6Copy full SHA for 2bb42e6
.github/workflows/ci.yml
@@ -123,13 +123,19 @@ jobs:
123
- name: Checkout source code
124
uses: actions/checkout@master
125
with:
126
- fetch-depth: 10
+ fetch-depth: 0 # needed for :commit: docs role
127
128
- name: Build kitty
129
run: python3 .github/workflows/ci.py build
130
131
- name: Test kitty
132
run: python3 .github/workflows/ci.py test
133
134
+ - name: Install deps for docs
135
+ run: python3 -m pip install -r docs/requirements.txt
136
+
137
+ - name: Builds docs
138
+ run: make FAIL_WARN=1 docs
139
140
- name: Build kitty package
141
run: python3 .github/workflows/ci.py package
0 commit comments