Skip to content

Commit

Permalink
update lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jthorton committed Dec 1, 2023
1 parent 68c3f9c commit 5e8e5cb
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/Lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,26 @@ jobs:
- uses: actions/checkout@v2

- name: Python Setup
uses: actions/setup-python@v2.1.4
uses: actions/setup-python@3
with:
python-version: ${{ matrix.python-version }}

- name: Create Environment
- name: Install lint
shell: bash
run: |
pip install -e . --no-build-isolation
pip install black isort flake8
- name: Install black
- name: Run black
shell: bash
run: |
pip install black
black naglmbis --check
- name: Run black
- name: Run isort
shell: bash
run: |
isort --check-only naglmbis
- name: Run flake8
shell: bash
run: |
black naglmbis --check
flake8 naglmbis

0 comments on commit 5e8e5cb

Please sign in to comment.