Skip to content

Bring better linting #54

Bring better linting

Bring better linting #54

Workflow file for this run

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