diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/codestyle.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index ce72ed58f7..f24a1d2523 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -13,8 +13,12 @@ jobs: if: github.repository == 'azerothcore/azerothcore-wotlk' steps: - uses: actions/checkout@v4 + - name: Setup python + uses: actions/setup-python@v4 + with: + python-version: '3.10' - name: AzerothCore codestyle - run: source ./apps/ci/ci-codestyle.sh + run: python ./apps/codestyle/codestyle.py - name: C++ Advanced run: | sudo apt update -y |