Skip to content

Commit 2dc4876

Browse files
committed
Try more Pythons, test Python
1 parent c263d49 commit 2dc4876

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ jobs:
2929
# - macos-14
3030

3131
# Comma separated list of python versions to test
32-
python-version: ["3.11"] # "3.8", "3.9", "3.10",
32+
python-version:
33+
- "3.9"
34+
- "3.10"
35+
- "3.11"
36+
- "3.12"
37+
- "3.13"
3338

3439
mpi:
3540
- mpich
@@ -76,10 +81,12 @@ jobs:
7681

7782
- name: build swift-t
7883
run: |
79-
dev/build/build-swift-t.sh -vv
84+
dev/build/build-swift-t.sh
8085
8186
- name: Report Swift/T version info
8287
run: /tmp/swift-t-install/stc/bin/swift-t -v
8388

8489
- name: Check that Swift/T runs
85-
run: /tmp/swift-t-install/stc/bin/swift-t -VV -E 'trace(42);'
90+
run: |
91+
/tmp/swift-t-install/stc/bin/swift-t -E 'trace(42);'
92+
/tmp/swift-t-install/stc/bin/swift-t -i python -E 'trace(python("","repr(42)"));'

0 commit comments

Comments
 (0)