ci: Add action-editorconfig-checker to the GitHub Action for linting

The editorconfig-checker program is not installed by default in the OS
used by GitHub Actions. Fortunately, the editorconfig-checker authors
have kindly provided the action-editorconfig-checker repository, which
we are now using.
This commit is contained in:
Cosmin Truta 2025-05-28 10:55:24 +03:00
parent cff8620272
commit e2c1579816

View File

@ -23,6 +23,8 @@ jobs:
restore-keys: ${{ runner.os }}-pip- restore-keys: ${{ runner.os }}-pip-
- name: Install yamllint - name: Install yamllint
run: pip install yamllint run: pip install yamllint
- name: Install editorconfig-checker
uses: editorconfig-checker/action-editorconfig-checker@main
- name: Check out the code - name: Check out the code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Run the linting script - name: Run the linting script