This repository has been archived by the owner on May 29, 2024. It is now read-only.
Add c++ sudoku solver #991
Workflow file for this run
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
# GitHub Action to run cpplint recursively on all pushes and pull requests | |
# https://github.com/cpplint/GitHub-Action-for-cpplint | |
name: C++ | |
on: | |
push: | |
branches: [ main ] | |
paths: '**/**.cpp' | |
pull_request: | |
branches: [ main ] | |
paths: '**/**.cpp' | |
jobs: | |
cpplint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install cpplint | |
- run: cpplint --counting=detailed --filter=-build/namespaces,-legal,-readability,-runtime,-whitespace --recursive . |