Skip to content

Implement support for devices with two relative wheels / dials #14

Implement support for devices with two relative wheels / dials

Implement support for devices with two relative wheels / dials #14

Workflow file for this run

on: [ push, pull_request ]
permissions:
contents: read
jobs:
python-black:
runs-on: ubuntu-22.04
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install black
- run: black test/
- run: git diff --exit-code || (echo "Please run black to reformat Python files" && false)