Skip to content

Commit

Permalink
Install mono on ubuntu-latest (#896)
Browse files Browse the repository at this point in the history
ubuntu-latest, now ubuntu-24.04 no longer has mono installed by default.

This commit updates the UnitTestRunner.yml to install mono before
running the tests.
  • Loading branch information
Javagedes authored Oct 14, 2024
1 parent 9f995c3 commit f03091e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/UnitTestRunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
python -m pip install --upgrade pip
pip install --upgrade -e .[dev]
- name: Install mono
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y mono-devel
- name: Run Unit Tests
run: coverage run -m pytest

Expand Down

0 comments on commit f03091e

Please sign in to comment.