Skip to content

Commit

Permalink
Add pugixml and remove .clang-tidy config
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkwan authored and hoangfitus committed Oct 30, 2023
1 parent 07eb15a commit 07cefa7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ jobs:
make
sudo make install
cd ../..
- name: Install pugixml
run: |
git clone https://github.com/zeux/pugixml.git pugixml
cd pugixml
mkdir build && cd build
cmake -DBUILD_SHARED_LIBS=ON ..
make
sudo make install
cd ../..
- name: Run clang-format
run: clang-format --dry-run --Werror src/*
- name: Run CMake
run: cmake -S. -Bbuild
- name: Run Make
run: make -Cbuild
- name: Run clang-tidy
run: clang-tidy src/* -p build/

0 comments on commit 07cefa7

Please sign in to comment.