Skip to content

feat: add copy_paste tool for range copy (formatting/formulas) #8

feat: add copy_paste tool for range copy (formatting/formulas)

feat: add copy_paste tool for range copy (formatting/formulas) #8

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.12"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --frozen --python ${{ matrix.python-version }}
- name: Run credential-free unit tests
run: uv run --python ${{ matrix.python-version }} python -m unittest discover -s tests -p 'test_*.py'