Fix the CI issues #723
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: Linters | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- release_* | |
jobs: | |
bandit: | |
name: Bandit analyzer for Python ${{ matrix.os.python }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- name: fedora | |
version: 33 | |
python: 3 | |
engine: docker | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: ./test.sh | |
env: | |
OS: ${{ matrix.os.name }} | |
OS_VERSION: ${{ matrix.os.version }} | |
PYTHON_VERSION: ${{ matrix.os.python }} | |
ENGINE: ${{ matrix.os.engine }} | |
ACTION: bandit | |
flake8: | |
name: Flake8 for Python 3 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Run flake8 for Python 3 | |
uses: containerbuildsystem/actions/flake8@master | |
markdownlint: | |
name: Markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Run markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v16 | |
pylint: | |
name: Pylint analyzer for Python ${{ matrix.os.python }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- name: fedora | |
version: 33 | |
python: 3 | |
engine: docker | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./test.sh | |
env: | |
OS: ${{ matrix.os.name }} | |
OS_VERSION: ${{ matrix.os.version }} | |
PYTHON_VERSION: ${{ matrix.os.python }} | |
ENGINE: ${{ matrix.os.engine }} | |
ACTION: pylint | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: containerbuildsystem/actions/shellcheck@master |