This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
fix: correct typo in picocom.c #1
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 | |
on: | |
pull_request: | |
push: | |
branches-ignore: main | |
jobs: | |
pre-commit: | |
name: Run Picocom pre-commit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
- name: Run pre-commit checks | |
uses: pre-commit/[email protected] |