Skip to content

feature: add shortcut m for toggle the move num of nodes #889

feature: add shortcut m for toggle the move num of nodes

feature: add shortcut m for toggle the move num of nodes #889

Workflow file for this run

name: test
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.11'] # '3.8', '3.9',
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install -e .
pip3 install pytest wheel polib
- name: Run tests
run: pytest tests
- name: Run I18N conversion
run: python i18n.py -todo
- name: Build
run: |
python3 setup.py sdist
python3 setup.py bdist_wheel