Skip to content

Use the normalize_string function when reading mnemonic words #54

Use the normalize_string function when reading mnemonic words

Use the normalize_string function when reading mnemonic words #54

Workflow file for this run

name: Check style and dist build
on: [push, pull_request]
jobs:
check_style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade black flake8 wheel mypy
- name: Check style
run: make style_check
- name: Check dist
run: make dist