chore(LICENSE): update copyright #31
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: CI | |
on: | |
push: | |
branches: | |
- "*" | |
tags-ignore: | |
- v* | |
pull_request: | |
jobs: | |
lint: | |
name: 🎨 Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install code formatter | |
run: sudo apt-get install clang-format | |
- name: Check code style | |
run: | | |
find include -type f | xargs clang-format --dry-run -Werror | |
find src -type f | xargs clang-format --dry-run -Werror | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
- name: Install markdownlint | |
run: npm install -g markdownlint-cli | |
- name: Check Markdown files | |
run: markdownlint . |