Skip to content

Commit

Permalink
workflows: add a lint workflow for isort
Browse files Browse the repository at this point in the history
  • Loading branch information
dcbaker committed Feb 13, 2024
1 parent d114cae commit bcbba13
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,13 @@ jobs:
PYTHONUNBUFFERED: 1
TERM: xterm-color
MYPY_FORCE_COLOR: 1

isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: python -m pip install isort
- run: isort --color --check-only mesonbuild unittests

0 comments on commit bcbba13

Please sign in to comment.