Add "binarly-io/idalib" under the new "reverse engineering" category #2083
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-md: | |
runs-on: ubuntu-latest | |
name: Lint Markdown content | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Markdown lint for README | |
uses: docker://avtodev/markdown-lint:v1 | |
with: | |
config: ./.markdownlint.json | |
args: ./README.md | |
lint-editorconfig: | |
runs-on: ubuntu-latest | |
name: Lint for editorconfig violations | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Check for editorconfig violations | |
uses: editorconfig-checker/action-editorconfig-checker@v2 | |
lint-markdown-toc: | |
runs-on: ubuntu-latest | |
name: Lint for Table of Contents | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install markdown-toc | |
- run: ./node_modules/.bin/markdown-toc -i README.md | |
- run: git diff --exit-code |