Skip to content

Commit 8492e74

Browse files
committed
chore: simplify CI to run from repo root
1 parent 9a80218 commit 8492e74

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: "3.11"
15+
- name: Install
16+
run: |
17+
python -m pip install --upgrade pip
18+
pip install -e ".[dev]"
19+
- name: Test
20+
run: pytest -q

0 commit comments

Comments
 (0)