mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
17 lines
328 B
YAML
17 lines
328 B
YAML
name: check-codestyle
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-codestyle:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-20.04]
|
|
runs-on: ${{ matrix.os }}
|
|
name: check codestyle
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Check core codestyle
|
|
run: source ./apps/ci/ci-codestyle.sh
|