Skip to content

chore(gh): try both min and max py version #92

chore(gh): try both min and max py version

chore(gh): try both min and max py version #92

Workflow file for this run

name: run checks
on:
push:
branches-ignore:
- master
jobs:
check_min:
name: Check with `su6 all` on lowest Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'uv' # caching uv dependencies
- uses: yezz123/setup-uv@v4
with:
uv-venv: ".venv"
- run: uv pip install su6[all] .[dev,all]
- run: su6 all --coverage 100
check_max:
name: Check with `su6 all` on highest Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'uv' # caching uv dependencies
- uses: yezz123/setup-uv@v4
with:
uv-venv: ".venv"
- run: uv pip install su6[all] .[dev,all]
- run: su6 all --coverage 100