Skip to content

Commit a9b42c0

Browse files
committed
chore: Integrate ruff check in Actions
1 parent da0f507 commit a9b42c0

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ruff-check.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Ruff Check
2+
3+
on:
4+
push:
5+
6+
7+
jobs:
8+
ruff:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Set up Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.x'
16+
- uses: astral-sh/ruff-action@v3

0 commit comments

Comments
 (0)