Added unit tests for BIP39 word list and SSKR word list #270
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: Code style check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- develop | |
tags: | |
- '**' | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/*.yml' | |
- 'tests/*' | |
jobs: | |
job_lint: | |
name: Linter using the reusable workflow | |
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_lint.yml@v1 | |
with: | |
source: 'src' | |
extensions: 'h,c' | |
version: 11 | |
misspell: | |
name: Check misspellings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check misspellings | |
uses: codespell-project/actions-codespell@v2 | |
with: | |
builtin: clear,rare | |
check_filenames: true | |
ignore_words_list: ontop |