Skip to content

feat(git): add ww git editor command (zed|vscode) #261

feat(git): add ww git editor command (zed|vscode)

feat(git): add ww git editor command (zed|vscode) #261

Workflow file for this run

name: Unit Test
on:
workflow_dispatch:
push:
paths:
- 'ww/**'
- 'tests/**'
pull_request:
paths:
- 'ww/**'
- 'tests/**'
concurrency:
group: 'unit-test'
cancel-in-progress: false
jobs:
test_job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.13.2
- name: Install dependencies
run: |
uv sync
uv pip install coverage
- name: Run unit tests
run: |
export PYTHONPATH=$PYTHONPATH:.
uv run python -m coverage run -m unittest discover tests
uv run python -m coverage report -m --fail-under=60