26 lines
568 B
YAML
26 lines
568 B
YAML
name: Codestyle
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
paths:
|
|
- data/**
|
|
- "!README.md"
|
|
- "!docs/**"
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
name: SQL
|
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
|
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-sql.py
|