Skip to content

Commit e060658

Browse files
authored
Add Ruff Lint workflow for Python code
Added ruff wrokflow, work in progress Signed-off-by: Dexter9532 <back-engstrom@hotmail.com>
1 parent a89eb55 commit e060658

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ruff.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Ruff Lint
2+
on:
3+
pull_request:
4+
branches: [ main ]
5+
push:
6+
branches: [ main ]
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
- run: pip install ruff
17+
- run: ruff check src/em511

0 commit comments

Comments
 (0)