Skip to content

Upgrade Lambda runtime to Python 3.12 #71

Upgrade Lambda runtime to Python 3.12

Upgrade Lambda runtime to Python 3.12 #71

Workflow file for this run

name: PR Tests
on:
pull_request:
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python 3.12
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: '3.12'
- name: Install dependencies
run: pip install tox
- name: Test with tox
run: tox -e py,flake8,black