diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8caebe58..efe2e718 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,6 +46,9 @@ jobs: - name: Check typing run: pdm run mypy + - name: Run Rust tests + run: pdm run cargo test + - name: Run unit tests run: pdm run pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml @@ -72,6 +75,9 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Run Rust tests + run: pdm run cargo test + - name: Run unit tests run: pdm run pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml @@ -92,6 +98,9 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Run Rust tests + run: pdm run cargo test + - name: Run unit tests run: pdm run pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml