From e74dd7bc7e8837cd51bd052bb2946fd4a2e97d95 Mon Sep 17 00:00:00 2001 From: Petro Kurbatskyi <67897517+ibexa-yuna@users.noreply.github.com> Date: Fri, 24 May 2024 09:04:38 +0200 Subject: [PATCH] ENG-125: Added linters job to CI workflow --- .github/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7c1d19a7be..0051755746 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,6 +33,18 @@ jobs: - name: Run code style check run: composer run-script check-cs -- --format=checkstyle | cs2pr + linters: + name: Run linters + runs-on: "ubuntu-22.04" + strategy: + matrix: + php: + - '8.3' + steps: + - uses: actions/checkout@v4 + + - uses: ibiqlik/action-yamllint@v3 + tests: name: Tests runs-on: "ubuntu-22.04"