Skip to content

Commit 053f971

Browse files
committed
Add CI
1 parent fbc7675 commit 053f971

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Continuous integration
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
tests-ubuntu:
11+
name: Tests (Ubuntu)
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.12'
18+
architecture: 'x64'
19+
- name: Install requirements
20+
run: |
21+
pip install numpy~=1.26 numba~=0.60
22+
pip install pytest~=8.3
23+
- name: Run tests
24+
run: pytest .

0 commit comments

Comments
 (0)