Skip to content

Tests(Next-Gen): new testing structure draft and example for `NGDataC… #666

Tests(Next-Gen): new testing structure draft and example for `NGDataC…

Tests(Next-Gen): new testing structure draft and example for `NGDataC… #666

Workflow file for this run

name: codecov
on:
push:
tags:
- "v*"
jobs:
codecov:
name: codecov update
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout code
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
# Install a specific version of uv.
version: "0.9.0"
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: 🧪 Run Tests
run: uv run pytest --color=yes --cov --cov-config=pyproject.toml --cov-report=xml --cov-report=term-missing
- name: Coverage
uses: codecov/codecov-action@v5
with:
version: v0.7.3