feat: add Emacs package for rio #1155
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |