chore(deps): Bump github.com/prometheus/exporter-toolkit #554
This file contains hidden or 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
| --- | |
| name: Build | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| go-version: [1.24.x, 1.25.x] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version}} | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install yamllint | |
| shell: sh | |
| run: | | |
| sudo apt-get install yamllint | |
| - name: Build | |
| shell: sh | |
| run: | | |
| make | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25.x | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install goveralls | |
| env: | |
| GO111MODULE: on | |
| run: go install github.com/mattn/goveralls@latest | |
| - name: Send coverage | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: goveralls -service=github |