Skip to content

Revamp GitHub issue templates #3088

Revamp GitHub issue templates

Revamp GitHub issue templates #3088

Workflow file for this run

name: unittests
on:
push:
branches: [ main, v14 ]
pull_request:
branches: [ main, v14 ]
types: [ opened, synchronize, reopened ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install tests dependencies
run: pip install ".[tests]"
- name: Run Tests
env:
PYTHONWARNINGS: "always:::recipe_scrapers,ignore:::recipe_scrapers.plugins.static_values"
run: unittest-parallel --level test