Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ jobs:
check-latest: true

- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true

- name: Install NuGet
uses: nuget/setup-nuget@v2
Expand All @@ -74,6 +77,18 @@ jobs:
sudo apt-get update
sudo apt-get install -y mono-complete

- name: Install Mono on macOS
if: startsWith(matrix.os, 'macos')
env:
HOMEBREW_NO_AUTO_UPDATE: 1
run: |
set -e
brew install mono || brew install --cask mono-mdk
if [ -x "/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono" ]; then
echo "/Library/Frameworks/Mono.framework/Versions/Current/Commands" >> "$GITHUB_PATH"
fi
mono --version

- name: Lint
run: go vet ./...

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/jfrog/build-info-go

go 1.24.6
go 1.25.4

require (
github.com/BurntSushi/toml v1.4.0
Expand Down
Loading