We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbc761 commit 968f8b0Copy full SHA for 968f8b0
.github/workflows/test.yml
@@ -38,7 +38,17 @@ jobs:
38
with:
39
dotnet-version: '6.x'
40
41
-
+ # Install Mono on Ubuntu to run nuget.exe
42
+ - name: Install Mono on Ubuntu
43
+ if: matrix.os == 'ubuntu'
44
+ run: |
45
+ sudo apt-get update
46
+ sudo apt-get install -y apt-transport-https dirmngr gnupg ca-certificates
47
+ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
48
+ echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
49
50
+ sudo apt-get install -y mono-complete
51
+
52
- name: Setup Go with cache
53
uses: jfrog/.github/actions/install-go-with-cache@main
54
0 commit comments