Skip to content

Further improval of controls #132

Further improval of controls

Further improval of controls #132

Workflow file for this run

name: Test suite
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Linting tests
run: |
black --check --diff v4l2py tests examples
ruff check --diff --format=github --show-files .
- name: Build package
run: |
python -m build
twine check dist/*
- name: Tests
run: ward