Skip to content

Commit

Permalink
Lint first
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Mar 19, 2023
1 parent 55397e2 commit e19d9de
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -11,6 +11,13 @@ permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install --user ruff
- run: ruff --format=github --ignore=E40,E7,F40,F821,F841
--line-length=213 --target-version=py37 .
build:

runs-on: ${{ matrix.os }}
Expand All @@ -28,10 +35,3 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Test
run: python -m unittest discover
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install --user ruff
- run: ruff --format=github --ignore=E40,E7,F40,F821,F841
--line-length=213 --target-version=py37 .

0 comments on commit e19d9de

Please sign in to comment.