Skip to content

Merge pull request #770 from Nikhil-Ladha/sync_us-ds #1164

Merge pull request #770 from Nikhil-Ladha/sync_us-ds

Merge pull request #770 from Nikhil-Ladha/sync_us-ds #1164

Workflow file for this run

name: Linters
on:
push:
tags:
- v*
branches:
- master
- release-*
pull_request:
branches:
- master
- release-*
# cancel the in-progress workflow when PR is refreshed.
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
yaml-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.9
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint -c .github/workflows/.yamllint deploy/examples/ --no-warnings
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.9
- name: Install pylint and requirements
run: |
pip install pylint
pip install pylint --upgrade
pip install requests
pip install pygit2
- name: Lint Python files
run: pylint $(git ls-files '*.py') -E
- name: Setup black for py
uses: psf/black@1b2427a2b785cc4aac97c19bb4b9a0de063f9547 # stable