Skip to content

Bump function deployment runtime to Python 3.12 #244

Bump function deployment runtime to Python 3.12

Bump function deployment runtime to Python 3.12 #244

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
NOTIFY_API_KEY: ${{ secrets.DEV_NOTIFY_API_KEY }}
steps:
- uses: actions/checkout@v4
- run: |
echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: true
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install virtual environment
run: make install-dev
- name: Running lint tests
run: make lint
- name: Running unit tests
run: make test