Use case insensitive matching for extension on relevant filesystems #45
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/checkout@v4.1.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4.7.1 | |
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 |