Skip to content

handle inline comments, and ignore spaces outside quotes #467

handle inline comments, and ignore spaces outside quotes

handle inline comments, and ignore spaces outside quotes #467

Workflow file for this run

name: CS
on:
push:
branches-ignore:
# These should always correspond to pull requests, so ignore them for
# the push trigger and let them be triggered by the pull_request
# trigger, avoiding running the workflow twice. This is a minor
# optimization so there's no need to ensure this is comprehensive.
- 'dependabot/**'
pull_request:
branches:
- develop
- main
jobs:
lint:
runs-on: ubuntu-latest
name: Code linting
# The maximum number of minutes to let a workflow run
# before GitHub automatically cancels it. Default: 360
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
- name: Set up Python 3.10
uses: actions/setup-python@v4.6.1
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Lint with tox
run: tox -e lint