Skip to content

console: allow sending a single command to the device. #23

console: allow sending a single command to the device.

console: allow sending a single command to the device. #23

Workflow file for this run

# SPDX-FileCopyrightText: 2021 The freestyle-hid Authors
#
# SPDX-License-Identifier: 0BSD
name: pytest
on:
push:
pull_request:
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[dev,tools,encryption]
- name: Test with pytest
run: |
pytest -vvv --mypy