Skip to content

Merge pull request #27 from pbrucla/serial_driver #24

Merge pull request #27 from pbrucla/serial_driver

Merge pull request #27 from pbrucla/serial_driver #24

Workflow file for this run

name: Lint CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Fixes: https://github.com/actions/checkout/issues/135
- name: Set git to use LF.
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- name: Install dependencies.
run: sudo apt-get install -y clang-format
- name: Lint
run: make check