forked from TrueCloudLab/frostfs-api
17 lines
335 B
YAML
17 lines
335 B
YAML
name: Formatters
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
fmt:
|
|
name: Run fmt
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install deps
|
|
run: |
|
|
apt update
|
|
apt install -y clang-format
|
|
- name: Run fmt
|
|
run: |
|
|
make fmt
|
|
git diff --exit-code --quiet
|