Skip to content

Commit de26150

Browse files
committed
Revert "Temporarily remove workflow file"
This reverts commit abe8338.
1 parent abe8338 commit de26150

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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 .
19+
pip install pytest
20+
- name: Test
21+
run: pytest -q

0 commit comments

Comments
 (0)