Skip to content

Fix quoted file paths #75

Fix quoted file paths

Fix quoted file paths #75

Workflow file for this run

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