Skip to content

Commit c1cb848

Browse files
add CI
1 parent 0d512f8 commit c1cb848

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.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+
branches: [master, next]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Set up Python
13+
uses: actions/setup-python@v3
14+
with:
15+
python-version: "3.9"
16+
- name: Test
17+
run: |
18+
pip install pytest
19+
pip install -r requirements.txt
20+
pytest

src/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)