Czech translation #456
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: Lint and Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- run: | | |
pip install -r requirements.txt | |
pip install . | |
- name: Install locales | |
run: | | |
apt-get update | |
apt-get -y install locales | |
locale-gen en_US | |
locale-gen de_DE | |
locale-gen fr_FR | |
locale-gen en_US | |
locale-gen es_ES | |
locale-gen it_IT | |
locale-gen nl_NL | |
locale-gen cs_CZ | |
locale -a | |
- name: Lint | |
run: pre-commit run --all-files | |
- name: Test | |
run: pytest |