Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Drop apt dependencies and switch to uv #122

Merged
merged 4 commits into from
Feb 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 13 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,58 +15,42 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Setup prerequisites
run: sudo apt update &&
sudo apt install -y libhdf5-serial-dev
netcdf-bin
libnetcdf-dev
libsm6
libxext6
libxrender-dev
libxt6
libgl1-mesa-glx
libfontconfig
libxkbcommon-x11-0

- name: Install dependencies
run: |
pip install .[tests]
uv pip install .[tests]

- name: Test local run
run: |
pytest -v

- name: Upload to codecov
run: |
pip install codecov
codecov
uv run pytest -v

lint:
runs-on: ubuntu-latest
if: always()

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
# Update output format to enable automatic inline annotations.

- name: Run Ruff
run: ruff check --output-format=github .
run: uvx ruff check --output-format=github .
Loading