Skip to content

hid_parser: handle negative numbers in descriptors #82

hid_parser: handle negative numbers in descriptors

hid_parser: handle negative numbers in descriptors #82

Workflow file for this run

name: checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
mypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.7, 3.8, 3.9]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- name: Install mypy
run: |
pip install --upgrade pip
pip install mypy
mypy --version
- name: Install dependencies
run: pip install typing-extensions
- name: Run mypy
run: mypy --python-version ${{ matrix.python }} -p hid_parser
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Run pre-commit
uses: pre-commit/action@v2.0.0