Skip to content

Commit

Permalink
update GA lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mattijn committed Oct 27, 2023
1 parent 71e3598 commit 92c6d3d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: black-ruff-mypy
name: ruff-mypy
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
Expand All @@ -17,13 +17,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Check formatting with black
run: |
black --diff --color .
black --check .
- name: Lint with ruff
run: |
ruff check .
ruff check .
- name: Check formatting with ruff
run: |
ruff format --diff .
ruff format --check .
- name: Lint with mypy
run: |
mypy altair tests

0 comments on commit 92c6d3d

Please sign in to comment.