Skip to content

Commit

Permalink
python-app.yml: install ninja-build package
Browse files Browse the repository at this point in the history
Updated moulin integrated tests require the ninja-build package.

This patch adds installation of this package during execution of the
GitHub Action checks.

Signed-off-by: Mykhailo Androsiuk <[email protected]>
  • Loading branch information
Mykhailo Androsiuk committed Jan 25, 2024
1 parent fe4cf13 commit b01b863
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
pip3 install flake8 pytest pyaml
# Needed by pygit package
sudo apt-get install python3-pygit2
# Needed by moulin integration tests
sudo apt-get install ninja-build
# Install other dependencies from setup.py
pip3 install .
- name: Lint with flake8
Expand All @@ -32,4 +34,4 @@ jobs:
flake8 . --count --max-complexity=12 --max-line-length=120 --statistics
- name: Test with pytest
run: |
pytest
pytest -s -v

0 comments on commit b01b863

Please sign in to comment.