Skip to content

Commit 1b6fa82

Browse files
authored
Create ci.yml
1 parent 8fcff6a commit 1b6fa82

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-python@v5
9+
with: { python-version: '3.11' }
10+
- run: pip install -r requirements.txt || true
11+
- run: pip install pytest ruff
12+
- run: ruff check .
13+
- run: pytest -q

0 commit comments

Comments
 (0)