Skip to content

Support 3.10

Support 3.10 #128

Workflow file for this run

name: E2E Testing
on:
push:
branches:
- main
pull_request:
env:
POETRY_VERSION: "1.6.1"
jobs:
test:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy-2.7 and pypy-3.8
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
shell: bash
run: pip install -e .
- name: Run All E2E Tests
env:
CI: true
shell: bash
working-directory: e2e_tests
run: sh run_all_e2e_tests.sh