Skip to content

feat: add Emacs package for rio #1155

feat: add Emacs package for rio

feat: add Emacs package for rio #1155

name: 🐍 Python Compatibility Check
on: [ push ]
jobs:
linux-python-compatibility:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8.10', '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run the CLI
run: |
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
uv python pin ${{ matrix.python-version }}
DEBUG=true uv run rio --help
windows-python-compatibility:
runs-on: windows-latest
permissions:
contents: read
strategy:
matrix:
python-version: [ '3.8.10', '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run the CLI
run: |
uv python pin ${{ matrix.python-version }}
uv run rio --help