Skip to content

Commit

Permalink
ci: Switch workflow linting to ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Feb 5, 2024
1 parent 78e1fb0 commit cc4ae0a
Showing 1 changed file with 11 additions and 36 deletions.
47 changes: 11 additions & 36 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,17 @@
name: Lint
name: Ruff

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on: [push, pull_request]
on:
push:
pull_request:

jobs:
flake8:
name: flake8
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install flake8
run: pip install --upgrade flake8
- name: Run flake8
uses: liskin/gh-problem-matcher-wrap@v3
with:
linters: flake8
run: flake8

isort:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: python -m pip install isort
- name: isort
uses: liskin/gh-problem-matcher-wrap@v3
with:
linters: isort
run: isort --check-only --diff ./
- uses: actions/checkout@v4

- run: python -Im pip install --user ruff

- name: Run ruff
run: ruff --output-format=github djangocms_alias

0 comments on commit cc4ae0a

Please sign in to comment.