Provide operator<TYPE>
as value for function in some conditions
#51
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
name: Tests CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run NSIQCppStyle tests | |
timeout-minutes: 5 | |
run: PYTHONPATH=./:./rules python -m unittest discover -s nsiqunittest -p "*.py" | |
- name: Run NSIQCppStyle RULES tests | |
timeout-minutes: 5 | |
run: PYTHONPATH=./:./rules python -m unittest discover -s rules -p "*.py" | |
- name: Run NSIQCppStyle App tests | |
timeout-minutes: 5 | |
run: python nsiqcppstyle_exe.py -f nsiqunittest/rules/comment_and_empty_lines.txt --ci nsiqunittest/src/simple_main.cpp |