Skip to content

Commit f277cd8

Browse files
committed
CI: Test Integration tests with Python 3.11
1 parent 043b05e commit f277cd8

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/CI.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,3 +444,32 @@ jobs:
444444
cd integration_tests
445445
./run_tests.py -b c_sym cpython_sym llvm_sym
446446
./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

0 commit comments

Comments
 (0)