This repository has been archived by the owner on May 28, 2024. It is now read-only.
ci: fix secret issue in rhel9-x86 workflow #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lint | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
commitlint: | |
name: "π commitlint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wagoid/commitlint-github-action@v5 | |
spellcheck: | |
name: "π spellcheck" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: codespell-project/actions-codespell@v1 | |
with: | |
check_filenames: true | |
ignore_words_list: bu | |
shellcheck: | |
name: "π Shellcheck" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ludeeus/action-shellcheck@master | |
yamllint: | |
name: "π¬ yamlint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: .yamllint.yml |