Improve GetCurrentMapVPK, tweaks to course top tables to reduce bad align issues caused by non-standard characters #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code formatting checks | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'src/**' | |
- '.clang-format' | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'src/**' | |
- '.clang-format' | |
jobs: | |
check-formatting: | |
name: Check for consistent formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- check: 'src' | |
exclude: 'sdk' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jidicula/[email protected] | |
with: | |
clang-format-version: '18' | |
check-path: ${{ matrix.path['check'] }} | |
exclude-regex: ${{ matrix.path['exclude'] }} |