Add Slovenian translations and a workflow for checking them #2569
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation workflow | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: False | |
matrix: | |
python: [3.9] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install linux system dependencies | |
run: sudo apt-get install -y libxkbcommon-x11-0 | |
- name: Install Tox | |
run: pip install tox | |
- name: Build documentation | |
run: tox -e build_doc | |
env: | |
QT_QPA_PLATFORM: offscreen |