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 fa57bd7 commit c4beef3Copy full SHA for c4beef3
.github/workflows/build.yml
@@ -0,0 +1,27 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - '*'
5
+jobs:
6
+ build-translation:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/setup-python@master
10
+ with:
11
+ python-version: 3.8
12
+ - uses: actions/checkout@master
13
14
+ repository: python/cpython
15
16
17
+ path: Doc/locales/pl/LC_MESSAGES
18
+ - run: make venv
19
+ working-directory: ./Doc
20
+ - run: echo 'gettext_compact = False' >> conf.py
21
22
+ - run: make -e SPHINXOPTS="-D language='pl'" html
23
24
+ - uses: actions/upload-artifact@master
25
26
+ name: build
27
+ path: Doc/build/html
0 commit comments