mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 08:55:36 +02:00
26 lines
420 B
YAML
26 lines
420 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: DoozyX/clang-format-lint-action@v0.15
|
|
with:
|
|
clangFormatVersion: 15
|
|
|
|
buildify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: thompsonja/bazel-buildifier@v0.4.0
|
|
with:
|
|
warnings: all
|
|
|