Skip to content

refactor: Harmonize plot kind literal string and move to full uv setu… #193

refactor: Harmonize plot kind literal string and move to full uv setu…

refactor: Harmonize plot kind literal string and move to full uv setu… #193

Workflow file for this run

name: Testing
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os:
- ubuntu
python-version:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
env:
TEST_ENV: CI
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras
- name: pytest
run: |
uv run pytest -v --cov-report term-missing --cov=gpx_track_analyzer