Fix quoted file paths #75
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: Python Patch-NG Tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'doc/**' | |
| - '**/*.md' | |
| - 'LICENSE' | |
| - 'example/**' | |
| - '.gitignore' | |
| workflow_dispatch: | |
| pull_request: | |
| paths-ignore: | |
| - 'doc/**' | |
| - '**/*.md' | |
| - 'LICENSE' | |
| - 'example/**' | |
| - '.gitignore' | |
| jobs: | |
| linux-validate: | |
| name: Validate on Linux - Python ${{ matrix.python }} | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| python: [ '3.7', '3.8', '3.12' ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| architecture: x64 | |
| - name: Run tests | |
| run: python tests/run_tests.py | |
| windows-validate: | |
| name: Validate on Windows - Python ${{ matrix.python }} | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| python: [ '3.7', '3.8', '3.12' ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| architecture: x64 | |
| - name: Run tests | |
| run: python tests/run_tests.py |