Bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- '**' | |
- '!gh-pages' | |
name: Tests | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
skip-pkg-cache: true | |
version: v1.58.2 | |
args: --timeout 3m --verbose | |
- name: Unit tests | |
run: | | |
curl -L https://milpa.dev/install.sh | bash - | |
go install gotest.tools/gotestsum@latest | |
milpa coredns-consul test --coverage | |
- name: Send coverage | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: coverage.out |