Skip to content

Update duper

Update duper #6

Workflow file for this run

name: test
on:
push:
branches: [ main, poc, pub ]
pull_request:
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
jobs:
cov:
name: Tests ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-14 ]
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.2' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Run mypy
run: uv run --python-preference system --extra test pytest tests --cov-report=term-missing --cov-config=pyproject.toml --cov=duper --cov=tests