mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-15 04:34:11 +00:00
1e7353c435
* Run clang-format on test code * Fix format test * Don't pack arguments * Use more descriptive variable names
22 lines
361 B
YAML
22 lines
361 B
YAML
name: Formatting tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Check formatting
|
|
run: |
|
|
cd src
|
|
make format
|
|
git diff --exit-code
|