Skip to content

Commit e22cd62

Browse files
committed
Use ruff in CI
1 parent 1be024d commit e22cd62

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ jobs:
1212
name: Code Quality
1313
runs-on: ubuntu-latest
1414
container:
15-
image: colibris/tox:latest
15+
image: python:3-slim
1616
steps:
1717
- name: Source code checkout
1818
uses: actions/checkout@master
19-
- name: Run flake8
20-
run: flake8 colibris
19+
- name: Install ruff
20+
run: pip install ruff
21+
- name: Run ruff
22+
run: ruff colibris
2123

2224
test:
2325
name: Test

0 commit comments

Comments
 (0)