In the Github workflow continuous integration::flake8-lint job, add
new checks for standardizing Python quotes usage. This will help
maintain the recommended quotes style in all new PR's.
Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
name: Lint
runs-on: ubuntu-latest
steps:
+ - name: Install flake8 dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install python3-flake8-quotes
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment