Skip to content

Merge pull request #3 from ipdk-io/add-checkers #2

Merge pull request #3 from ipdk-io/add-checkers

Merge pull request #3 from ipdk-io/add-checkers #2

Workflow file for this run

name: "Check modified files"
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
# If workflow is currently running, stop it and start a new one.
group: check-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
#---------------------------------------------------------------------
# 1-markdownlint
#---------------------------------------------------------------------
markdownlint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get list of changed files
id: changed
uses: tj-actions/changed-files@v45
with:
files: |
**.md
- name: Lint markdown files
if: steps.changed.outputs.any_changed == 'true'
uses: nosborn/[email protected]
with:
files: ${{ steps.changed.outputs.all_changed_files }}
config_file: .markdownlint.json
#---------------------------------------------------------------------
# 2-bandit_check
#---------------------------------------------------------------------
bandit_check:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Check Python files
uses: tj-actions/[email protected]
with:
targets: |
**/**.py
options: "-v"
#---------------------------------------------------------------------
# 3-shellcheck
#---------------------------------------------------------------------
shellcheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get list of changed files
id: changed
uses: tj-actions/changed-files@v45
with:
files: |
**.sh
- name: Check for bash errors
if: steps.changed.outputs.any_changed == 'true'
run: |
shellcheck ${{ steps.changed.outputs.all_changed_files }}