Skip to content

Commit b1f1672

Browse files
committed
Install Mono on macOS CI
1 parent aef2648 commit b1f1672

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pull-request.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Get .NET information
3232
run: dotnet --info
3333

34-
- name: Install Mono
34+
- name: Install Mono (Ubuntu)
3535
run: >
3636
sudo apt-get -y install apt-transport-https dirmngr gnupg ca-certificates software-properties-common &&
3737
curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3fa7e0328081bff6a14da29aa6a19b38d3d831ef' | sudo tee /etc/apt/trusted.gpg.d/mono-official-stable.asc &&
@@ -40,6 +40,10 @@ jobs:
4040
sudo apt-get -y install mono-complete mono-vbnc
4141
if: ${{ matrix.os == 'ubuntu-latest' }}
4242

43+
- name: Install Mono (macOS)
44+
run: brew install mono
45+
if: ${{ matrix.os == 'macOS-latest' }}
46+
4347
- name: Get Mono information
4448
run: mono --version
4549
if: ${{ matrix.os != 'windows-latest' }}

0 commit comments

Comments
 (0)