We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c263d49 commit 2dc4876Copy full SHA for 2dc4876
.github/workflows/build.yaml
@@ -29,7 +29,12 @@ jobs:
29
# - macos-14
30
31
# Comma separated list of python versions to test
32
- python-version: ["3.11"] # "3.8", "3.9", "3.10",
+ python-version:
33
+ - "3.9"
34
+ - "3.10"
35
+ - "3.11"
36
+ - "3.12"
37
+ - "3.13"
38
39
mpi:
40
- mpich
@@ -76,10 +81,12 @@ jobs:
76
81
77
82
- name: build swift-t
78
83
run: |
79
- dev/build/build-swift-t.sh -vv
84
+ dev/build/build-swift-t.sh
80
85
86
- name: Report Swift/T version info
87
run: /tmp/swift-t-install/stc/bin/swift-t -v
88
89
- name: Check that Swift/T runs
- 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