This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
Merge pull request #57 from dj8yfo/change_icons #243
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: Run coding style check | |
# This workflow will run linting checks to ensure a level of code quality among all Ledger applications. | |
# | |
# The presence of this workflow is mandatory as a minimal level of linting is required. | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
jobs: | |
check_linting: | |
name: Check linting using the reusable workflow | |
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_lint.yml@v1 | |
with: | |
source: './src' |