Skip to content

Adapting timeout while-loop in Wire.cpp #29

Adapting timeout while-loop in Wire.cpp

Adapting timeout while-loop in Wire.cpp #29

Workflow file for this run

name: Pre-commit checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files