placed playerbot sql folder into data folder as core/module describes #47
Workflow file for this run
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: Codestyle | |
on: | |
pull_request: | |
paths: | |
- src/** | |
- "!README.md" | |
- "!docs/**" | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
name: C++ | |
if: github.repository == 'liyunfan1223/azerothcore-wotlk' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: AzerothCore codestyle | |
run: python ./apps/codestyle/codestyle.py | |
- name: C++ Advanced | |
run: | | |
sudo apt update -y | |
sudo apt install -y cppcheck | |
cppcheck --force --inline-suppr --suppressions-list=./.suppress.cppcheck src/ --output-file=report.txt | |
if [ -s report.txt ]; then # if file is not empty | |
cat report.txt | |
exit 1 # let github action fails | |
fi |