Merge pull request #104 from ak0327/fix/status #923
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: CPPLINT | |
on: [push] | |
jobs: | |
run-cpp-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install cpplint | |
run: pip install cpplint && cpplint --version | |
- name: Run cpplint | |
run: cpplint --recursive srcs | |
- uses: sarisia/actions-status-discord@v1 | |
if: always() | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
status: ${{ job.status }} |