QR code source path is now used explicitly #55
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: Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
jobs: | |
src_lint_check: | |
name: Lint check on source files | |
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_lint.yml@v1 | |
with: | |
version: 11 | |
source: src/ | |
tests_lint_check: | |
name: Lint check on tests files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- run: pip install yapf toml | |
- name: Yapf source formatting | |
run: | | |
yapf tests/ --recursive -d |