mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
935ebe6910
* WIP * Match * Changes * Fix format * Style fixes * Update naming.yml * Match to ~85%
29 lines
651 B
YAML
29 lines
651 B
YAML
name: Naming
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ncc:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install LLVM and Clang
|
|
uses: KyleMayes/install-llvm-action@v1
|
|
with:
|
|
version: "16"
|
|
|
|
- name: Install python libraries
|
|
run: |
|
|
pip install -r tools/requirements.txt
|
|
|
|
- name: Run ncc
|
|
run: |
|
|
python3 tools/ncc/ncc.py \
|
|
--clang-lib ${{ env.LLVM_PATH }}/lib/libclang.so \
|
|
--style tools/ncc/ncc.style \
|
|
--skip tools/ncc/skip.yml \
|
|
--definition WINAPI FAR CALLBACK HWND__=HWND \
|
|
--include util \
|
|
--path LEGO1
|