Merge commit 'e7e2f15be55d8dc1be4904b58309f8bf448ff713' as 'external/fmt'

This commit is contained in:
Simone
2024-01-23 08:37:20 +01:00
213 changed files with 90089 additions and 0 deletions

26
external/fmt/.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: lint
on:
pull_request:
paths:
- '**.h'
- '**.cc'
permissions:
contents: read
jobs:
format_code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-format
uses: aminya/setup-cpp@v1
with:
clangformat: 17.0.5
- name: Run clang-format
run: |
find include src -name '*.h' -o -name '*.cc' | xargs clang-format -i -style=file -fallback-style=none
git diff --exit-code