Merge pull request #205 from dwreeves/add-macports-note #372
This file contains 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: Test Coverage | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.7.x, 3.11.x, 3.12.x] | |
click: [7.0.*, 7.1.*, 8.0.*, 8.1.*] | |
rich: [12.*, 13.*] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
if: matrix.python != '3.7.x' | |
run: | | |
pip install -U uv | |
uv pip install --system --editable ".[dev]" | |
uv pip install --system --upgrade "click==$CLICK_VERSION" | |
uv pip install --system --upgrade "rich==$RICH_VERSION" | |
env: | |
CLICK_VERSION: ${{ matrix.click }} | |
RICH_VERSION: ${{ matrix.rich }} | |
- name: Install dependencies (Python 3.7) | |
if: matrix.python == '3.7.x' | |
run: | | |
pip install --editable ".[dev]" | |
pip install --upgrade "click==$CLICK_VERSION" | |
pip install --upgrade "rich==$RICH_VERSION" | |
env: | |
CLICK_VERSION: ${{ matrix.click }} | |
RICH_VERSION: ${{ matrix.rich }} | |
- name: Run tests | |
run: pytest --cov --cov-report xml |