Skip to content

Commit

Permalink
ci: run Rust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Apr 9, 2024
1 parent 0301192 commit 5a0bc0d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 5a0bc0d

Please sign in to comment.