Skip to content

Merge pull request #655 from AdmiralGT/grt/file-name-version #1

Merge pull request #655 from AdmiralGT/grt/file-name-version

Merge pull request #655 from AdmiralGT/grt/file-name-version #1

Workflow file for this run

name: Run tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: |
uv run ruff check
- name: Run tests
run: |
uv run pytest tests/ --cov scripts
uv run coverage report