Skip to content

Commit bbd93b7

Browse files
committed
ci: add unit test workflow
1 parent 8788d37 commit bbd93b7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/unit_tests.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run unit tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
pytest:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v6
14+
- name: Python Setup
15+
uses: actions/setup-python@v6
16+
with:
17+
python-version: 3.13
18+
cache: 'pip'
19+
cache-dependency-path: ./setup.cfg
20+
21+
- name: Install libraries
22+
run: make python-install-development
23+
24+
- name: Run pytest
25+
run: pytest

0 commit comments

Comments
 (0)