Skip to content

Commit 3373b3b

Browse files
committed
Run tests
1 parent 2c14b6d commit 3373b3b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
push:
3+
pull_request:
4+
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Install packages
14+
run: |
15+
python -m venv venv
16+
. venv/bin/activate
17+
pip install -e .[dev]
18+
19+
- name: Run tests
20+
run: |
21+
. venv/bin/activate
22+
pytest

0 commit comments

Comments
 (0)