Y333 241030/token account owner display #338
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 | |
pull_request: | |
jobs: | |
job_lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- name: Lint src | |
uses: DoozyX/[email protected] | |
with: | |
source: './src' | |
extensions: 'h,c' | |
clangFormatVersion: 12.0.0 | |
- name: Lint libsol | |
uses: DoozyX/[email protected] | |
with: | |
source: './libsol' | |
extensions: 'h,c' | |
clangFormatVersion: 12.0.0 | |
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@2391250ab05295bddd51e36a8c6295edb6343b0e | |
with: | |
# Use Config file when the github action supports it | |
builtin: clear,rare | |
check_filenames: true | |
skip: ./libsol/printer_test.c,./tests/Cargo.lock,./tools/apdu_generator/Cargo.lock |