add more dunder methods to the python API for dimension and other types #1024
Workflow file for this run
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: Static Analyzers | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| cpplint: | |
| runs-on: ubuntu-latest | |
| container: helics/buildenv:cpplint | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run cpplint | |
| run: cpplint --counting=detailed --recursive units test webserver converter | |
| cppcheck: | |
| runs-on: ubuntu-latest | |
| container: helics/buildenv:cppcheck2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run cppcheck | |
| run: cppcheck --enable=performance,portability --check-level=exhaustive --suppressions-list=config/cppcheck_suppressions.txt --error-exitcode=-4 -i ThirdParty -i FuzzTargets -i docs -i config . |