Skip to content

Add an option in the configuration file to explicitly set which command to use for privilege elevation #354

Add an option in the configuration file to explicitly set which command to use for privilege elevation

Add an option in the configuration file to explicitly set which command to use for privilege elevation #354

Workflow file for this run

name: CI
on: pull_request
jobs:
Test:
runs-on:
- self-hosted
- CI-CD
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Run actionlint
run: actionlint -ignore 'label "CI-CD" is unknown' .github/workflows/CI.yml
- name: Run codespell
run: codespell --skip="README-fr.md,./doc/man/fr,./po" --enable-colors
- name: Run mdl
run: mdl --style .github/workflows/mdl_style.rb .
- name: Run shellcheck
run: find . -name '*.sh' -exec shellcheck --color=always {} +
- name: Run pylint
run: find . -name '*.py' -exec pylint -d E0611,E0401,C0103 --output-format=colorized {} +