8000 [github] add SHA to commit message · v4l2loopback/v4l2loopback@d547080 · GitHub
[go: up one dir, main page]

Skip to content

[github] add SHA to commit message #202

[github] add SHA to commit message

[github] add SHA to commit message #202

Workflow file for this run

name: Code Linters
on: [push, pull_request]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get -y install clang-format make
- name: Checkout code
uses: actions/checkout@v2
- name: Check Code Formatting
run: |
make clang-format
git status --porcelain
git diff --exit-code
0