Skip to content

Commit

Permalink
ruffage
Browse files Browse the repository at this point in the history
  • Loading branch information
ketiltrout committed Aug 2, 2024
1 parent 437e7eb commit 8c7e3d0
Show file tree
Hide file tree
Showing 29 changed files with 1,198 additions and 1,238 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ on:

jobs:

lint-code:

black-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -26,6 +25,22 @@ jobs:
- name: Check code with black
run: black --check .

ruff-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install ruff
run: pip install ruff

- name: Check code with ruff
run: ruff check .

run-tests:

strategy:
Expand Down
Loading

0 comments on commit 8c7e3d0

Please sign in to comment.