feat(git): add ww git editor command (zed|vscode) #261
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |