feat(esp32p4): add support for ESP32-P4 USB CDC #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit checks | |
on: [push, pull_request] | |
jobs: | |
pre_commit_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.12 | |
- name: Run pre-commit hooks | |
run: | | |
pip install pre-commit | |
pre-commit run --show-diff-on-failure --from-ref origin/master --to-ref HEAD |