We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbc7675 commit 053f971Copy full SHA for 053f971
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: Continuous integration
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
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