delete the branches after successful merge #80
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: Linting | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
shell-lint: | |
name: Shell Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: ludeeus/[email protected] | |
python-lint: | |
name: Python Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
working-directory: src | |
run: | | |
python -m pip install -r requirements.txt | |
poetry install | |
- name: Run Linters | |
working-directory: src | |
run: | | |
poetry run flake8 --ignore=E501 | |
markdown-lint: | |
name: Markdown Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint MD files | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: './**/*.md' | |
yaml-lint: | |
name: YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: YAML Lint | |
uses: karancode/[email protected] | |
with: | |
yamllint_comment: true | |
yamllint_format: parsable | |
yamllint_config_filepath: yamllint.yaml |