Revert "Rename root project to 'memmachine-dev' to avoid namespace co… #2
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: Run Python test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| # Cancel any preceding run on the pull request after a new commit is pushed. | |
| concurrency: | |
| group: pytest-${{ github.event.pull_request.number || github.ref }}-${{ github.event_name }} | |
| # Don't cancel if running on a push to the main branch. | |
| cancel-in-progress: ${{ (github.event.pull_request.head.ref || github.ref) != 'refs/heads/main' }} | |
| jobs: | |
| unit-test: | |
| name: Run Python unit tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.12", "3.13", "3.14" ] | |
| os: [ ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install the latest version of uv and set the python version | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Test with python ${{ matrix.python-version }} | |
| run: uv run --frozen --all-extras coverage run -m pytest | |
| - name: Print coverage report | |
| run: uv run --frozen --all-extras coverage report --sort=cover |