Skip to content

Commit

Permalink
Add C++ unit tests run after build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Argmaster committed Oct 11, 2024
1 parent 042c867 commit 84b552a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/multiplatform_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,14 @@ jobs:
with:
name: build-${{ github.sha }}-${{ matrix.os }}-${{ matrix.python-version }}
path: ./dist/*

- if: startsWith(matrix.os, 'ubuntu')
name: Add virtual environment binaries to PATH
run: echo echo "$(poetry env info --path)/bin" >> "$GITHUB_PATH

- if: startsWith(matrix.os, 'windows')
name: Add virtual environment binaries to PATH
run: echo echo "$(poetry env info --path)/Scripts" >> "$GITHUB_PATH

- name: Run unit tests
run: poetry run poe ctest

0 comments on commit 84b552a

Please sign in to comment.