Skip to content

feat: Make it work with uv #3

feat: Make it work with uv

feat: Make it work with uv #3

Workflow file for this run

name: ci
on:
push:
pull_request:
branches:
- main
defaults:
run:
shell: bash
env:
LANG: "en_US.utf-8"
LC_ALL: "en_US.utf-8"
PYTHONIOENCODING: "UTF-8"
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' || matrix.python-version == '3.12'}}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Set up tools
run: |
git config --global init.defaultBranch main
git config --global user.email "[email protected]"
git config --global user.name "Timothée Mazzucotelli"
- name: Set up the project
run: pip install copier copier-templates-extensions
- name: Run the test suite
run: make test