Skip to content

fix: set the correct app stage for dev image #9

fix: set the correct app stage for dev image

fix: set the correct app stage for dev image #9

Workflow file for this run

name: Compability
# This workflow will run compatibility checks using Vermin, which checks the minimum Python version required for the codebase.
# uv run vermin --eval-annotations --backport typing --no-parse-comments .
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install vermin
- name: Check minimal Python version
run: vermin --eval-annotations --backport typing --no-parse-comments .