Skip to content

add russian translation for installation #236

add russian translation for installation

add russian translation for installation #236

Workflow file for this run

name: code quality
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
node-version: ["23"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . ruff mypy
npm install -g markdownlint-cli
- name: ruff check
run: |
ruff check
- name: mypy check
run: |
mypy .
- name: markdownlint check
run: |
markdownlint .