Skip to content

WIP qualisys_interface #15

WIP qualisys_interface

WIP qualisys_interface #15

Workflow file for this run

#Checks if the code is formatted with black.
name: is your code linted with black?
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: Install Black
run: pip install black
- name: Run black --check .
run: black . --check -l120