Skip to content

Update to uv

Update to uv #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev pkg-config
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install uv
run: pip install uv
- name: Make Setup
run: make setup
- name: CI
run: make ci
- name: Upload code coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-html
path: htmlcov/
if-no-files-found: ignore