Skip to content

Commit

Permalink
cicd: update linting check (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson authored Jan 25, 2024
1 parent b1ccfce commit 9a2ee61
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: black
uses: psf/black@stable
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: ruff
uses: chartboost/ruff-action@v1
- name: Install dependencies
run: python3 -m pip install ".[dev]"

- name: Check style
run: python3 -m ruff check . && ruff format --check .

0 comments on commit 9a2ee61

Please sign in to comment.