Skip to content

Added files pylint, integration tests, CI, workflow #1350

Added files pylint, integration tests, CI, workflow

Added files pylint, integration tests, CI, workflow #1350

Workflow file for this run

name: Pylint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pylint:
uses: ./.github/workflows/test_workflow.yml

Check failure on line 13 in .github/workflows/pylint.yml

View workflow run for this annotation

GitHub Actions / Pylint

Invalid workflow file

The workflow is not valid. .github/workflows/pylint.yml (Line: 13, Col: 11): Input python-version is required, but not provided while calling. .github/workflows/pylint.yml (Line: 13, Col: 11): Input package-manager is required, but not provided while calling.
with:
steps_override: |
- name: Install pylint
run: pip install pylint
- name: Run pylint
run: pylint $(git ls-files '*.py') --disable=all --enable=C0114,C0115,C0116,C0301