Skip to content

Bump uv from 0.8.13 to 0.9.6 #2159

Bump uv from 0.8.13 to 0.9.6

Bump uv from 0.8.13 to 0.9.6 #2159

Workflow file for this run

on:
push:
pull_request:
workflow_dispatch:
inputs:
mreg_image:
description: "MREG Docker image to use for testing"
required: false
name: CI
jobs:
test:
name: Integration
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version:
- "3.11"
- "3.12"
- "3.13"
env:
# Disable colors and formatting in Rich console output
TERM: dumb
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test and compare api calls
run: ci/run_testsuite_and_record_V2.sh ${{ matrix.python-version }} ${{ github.event.inputs.mreg_image }}
tox:
name: tox
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group ci
- name: Test building with tox
run: uv run tox r
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v18
with:
config: ".markdownlint.json"
globs: "**/*.md"
unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run unittest
run: uv run pytest