Skip to content

Fix prompt_filter.py crash on Python < 3.10 (macOS) #26

Fix prompt_filter.py crash on Python < 3.10 (macOS)

Fix prompt_filter.py crash on Python < 3.10 (macOS) #26

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install pyyaml
- name: Run tests
run: bash tests/run-tests.sh --verbose
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install pyyaml
- name: Run tests
shell: pwsh
run: .\tests\run-tests.ps1 -Verbose