Skip to content

Bump github.com/signalfx/golib/v3 from 3.3.53 to 3.3.54 (#247) #394

Bump github.com/signalfx/golib/v3 from 3.3.53 to 3.3.54 (#247)

Bump github.com/signalfx/golib/v3 from 3.3.53 to 3.3.54 (#247) #394

Workflow file for this run

name: CI build
on:
pull_request:
push:
branches:
- main
jobs:
check-links:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check all links in *.md files
id: lychee
uses: lycheeverse/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: >-
-v -n "*.md" "**/*.md"
--exclude "https://ingest.us0.signalfx.com.*"
--exclude "http://localhost*"
- name: Fail if there were link errors
run: exit ${{ steps.lychee.outputs.exit_code }}
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build and test
run: |
echo "RUNNING TESTS"
mkdir ~/testresults
(cd /tmp; GO111MODULE=on go install gotest.tools/gotestsum@latest)
CGO_ENABLED=0 gotestsum --format short-verbose --junitfile ~/testresults/unit.xml --raw-command -- go test --json -p 4 ./...
echo "BUILDING"
make