Skip to content

Update main.py

Update main.py #38

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package + dev deps
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: pip check
run: python -m pip check
- name: Ruff
run: python -m ruff check .
- name: Black
run: python -m black --check .
- name: Pytest
run: pytest -q --cov=venting --cov-report=term-missing