Skip to content

Commit

Permalink
Fix failing tests (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalbe4 authored Dec 18, 2024
1 parent e7a75ce commit 4729d1e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ jobs:
- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main

# Install Mono on Ubuntu to run nuget.exe (due to this issue on Ubuntu 24 that hasn't been fixed yet - https://github.com/NuGet/setup-nuget/issues/168)
- name: Install Mono on Ubuntu
if: matrix.os == 'ubuntu'
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https dirmngr gnupg ca-certificates
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Lint
run: go vet ./...

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
]
},
{
"id": "six:1.16.0",
"id": "six:1.17.0",
"type": "metadata",
"requestedBy": [
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
]
},
{
"id": "six:1.16.0",
"id": "six:1.17.0",
"type": "metadata",
"requestedBy": [
[
Expand Down

0 comments on commit 4729d1e

Please sign in to comment.