Skip to content

Commit

Permalink
chore(gh): try both min and max py version
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvandernoord committed May 22, 2024
1 parent 2b27de1 commit c0719a2
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/su6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ on:
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: 'pip' # caching pip dependencies
# - uses: yezz123/setup-uv@v4
# - run: >
# uv venv --python 3.10 --seed &&
# source .venv/bin/activate &&
# uv pip install su6[all] .[dev,all] &&
# su6 all --coverage 100
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
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
cache: 'uv' # caching uv dependencies
- uses: yezz123/setup-uv@v4
with:
uv-venv: ".venv"
Expand Down

0 comments on commit c0719a2

Please sign in to comment.