File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -444,3 +444,32 @@ jobs:
444
444
cd integration_tests
445
445
./run_tests.py -b c_sym cpython_sym llvm_sym
446
446
./run_tests.py -b c_sym cpython_sym llvm_sym -f
447
+
448
+ python_3_11 :
449
+ name : Run Integration tests with Python 3.11
450
+ runs-on : ubuntu-latest
451
+ steps :
452
+ - uses : actions/checkout@v3
453
+ with :
454
+ fetch-depth : 0
455
+
456
+ - uses : mamba-org/setup-micromamba@v1
457
+ with :
458
+ environment-file : ci/environment.yml
459
+ create-args : >-
460
+ python=3.11.3
461
+ bison=3.4
462
+
463
+ - uses : hendrikmuhs/ccache-action@main
464
+ with :
465
+ key : ${{ github.job }}-${{ matrix.os }}
466
+
467
+ - name : Show Python version
468
+ shell : bash -e -l {0}
469
+ run : python --version
470
+
471
+ - name : Test
472
+ shell : bash -e -l {0}
473
+ run : |
474
+ cd integration_tests
475
+ ./run_tests.py -b cpython
You can’t perform that action at this time.
0 commit comments