Skip to content

Commit 043675c

Browse files
committed
CI tools
1 parent 72ef53e commit 043675c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/CI.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latests
11+
12+
steps:
13+
- name: Clone repo
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.9"
20+
21+
- name: Python Dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install -e .[test]
25+
26+
- name: Run Tests with Pytest
27+
run: |
28+
pytest --verbose

0 commit comments

Comments
 (0)