chore (ci): adopt astral-sh actions #665
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/ruff-action@v2 | |
# Update output format to enable automatic inline annotations. | |
- run: ruff check --output-format=github | |
- run: ruff format --check | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: uv pip install -r requirements/required.txt -r requirements/test.txt | |
- name: Show installed packages | |
run: uv run python -m pip list | |
- name: Test with PyTest | |
run: uv run pytest -v -rsx -n 2 --cov=segmentation_models_pytorch --cov-report=xml --cov-config=pyproject.toml -k "not logits_match" | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: qubvel-org/segmentation_models.pytorch | |
if: matrix.os == 'macos-latest' && matrix.python-version == '3.12' | |
test_logits_match: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: uv pip install -r requirements/required.txt -r requirements/test.txt | |
- name: Test with PyTest | |
run: RUN_SLOW=1 uv run pytest -v -rsx -n 2 -k "logits_match" | |
minimum: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: uv pip install -r requirements/minimum.old -r requirements/test.txt | |
- name: Show installed packages | |
run: uv run python -m pip list | |
- name: Test with pytest | |
run: uv run pytest -v -rsx -n 2 -k "not logits_match" |