feature: add shortcut m for toggle the move num of nodes #890
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: 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 |