allow escape and null chars to be inserted in editor #437
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: Unittests | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/unit_test.yml | |
- cat_win/** | |
- workflowHelper/** | |
# specify (all) branches such that the workflow will | |
# not trigger on tag/release-creation | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
python-version: [3.7, '3.10', 'pypy-3.8'] | |
steps: | |
- name: Set Windows Line Ending | |
run: | | |
git config --global core.autocrlf true | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Install Python ${{ matrix.python-version }} | |
id: python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Update PIP | |
run: | | |
python -m pip install --upgrade pip | |
- name: Setup Test Dependencies | |
run: | | |
python -m pip install --upgrade -r ./workflowHelper/requirements.txt | |
- name: Start UnitTests | |
run: | | |
python -m unittest discover -s cat_win.tests -p test*.py |