Added files pylint, integration tests, CI, workflow #1350
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: 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 GitHub Actions / PylintInvalid workflow file
|
||
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 |