Skip to content

feat: replace Poetry with UV #1563

feat: replace Poetry with UV

feat: replace Poetry with UV #1563

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
tests:
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
uses: wntrblm/nox@main
- name: Run tests with tox
run: nox --python ${{ matrix.python-version }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
if: ${{ matrix.python-version == '3.13' }}
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
lint:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- uses: astral-sh/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
args: "format --check"