Skip to content

Update to Python 3.12 #5

Update to Python 3.12

Update to Python 3.12 #5

Workflow file for this run

name: python
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.run_id || github.head_ref || github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
test_python311:
name: Test python3.11 support
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- run: INSTALL_EXTRA_PACKAGES=no tools/install_ubuntu_dependencies.sh
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.4'
- run: pip install pip==24.0
- run: pip install poetry==1.7.0
- run: poetry install --no-cache --no-root