Remove old travis CI yml file #1
This file contains hidden or 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: {} | |
| pull_request: | |
| types: [opened, reopened] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Check GCC version | |
| run: gcc --version | |
| - name: Install CppCheck | |
| run: sudo apt-get install cppcheck | |
| - name: Install CppLint | |
| run: pipx install cpplint | |
| - name: Run Linters | |
| run: | | |
| cpplint --filter=-whitespace/line_length,-legal/copyright,-runtime/explicit *.cpp *.h | |
| cppcheck --suppress='*:catch.hpp' . --force | |
| - name: Run Tests | |
| run: make test |