mirror of https://github.com/zeldaret/botw.git
16 lines
348 B
YAML
16 lines
348 B
YAML
name: lint_pr
|
|
on: [push, pull_request]
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- uses: DoozyX/clang-format-lint-action@v0.20
|
|
with:
|
|
source: 'src'
|
|
exclude: 'lib'
|
|
clangFormatVersion: 19
|