chore: bump version to v0.2.3 #108
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python | |
| run: uv python install 3.14 | |
| - name: Install dependencies | |
| working-directory: packages/typemap | |
| run: uv sync --group dev | |
| - name: Run tests with coverage | |
| working-directory: packages/typemap | |
| # test_cqa.py runs ruff/mypy on project itself, causes circular issues in CI | |
| run: uv run pytest --ignore=tests/test_cqa.py --cov=src --cov-report=xml --cov-report=term-missing | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| file: packages/typemap/coverage.xml | |
| flags: unittests | |
| name: typemap | |
| fail_ci_if_error: false | |
| verbose: true |