There was an error while loading. Please reload this page.
1 parent 594e667 commit 89b0cebCopy full SHA for 89b0ceb
2 files changed
.github/minimal_pythran.py
@@ -0,0 +1,5 @@
1
+
2
+# pythran export func(int)
3
4
+def func(arg):
5
+ return arg
.github/workflows/ci-windows.yml
@@ -17,9 +17,23 @@ jobs:
17
with:
18
pixi-version: v0.47.0
19
cache: false
20
- - name: Tests
21
+ - name: Setup
22
run: |
23
pixi run install-editable
24
+ pixi list
25
26
+ - name: Checks
27
+ run: |
28
+ echo $CC
29
+ echo $CXX
30
31
+ - name: Minimal Pythran check
32
33
+ pixi run pythran .github/minimal_pythran.py
34
35
+ - name: Tests
36
37
pixi run pytest tests
38
pixi run mpirun -np 2 pytest tests
39
echo "TRANSONIC_BACKEND=python" >> $GITHUB_ENV
0 commit comments