Skip to content

fix interrupts (#127) #243

fix interrupts (#127)

fix interrupts (#127) #243

Workflow file for this run

name: Python Black Format Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Black
run: pip install black==24.3.0
- name: Check code formatting with Black
run: black --check openduck-py