mirror of
https://github.com/zalando-incubator/kube-metrics-adapter.git
synced 2026-05-30 17:37:25 +00:00
1d35f93162
Bumps the github-actions group with 1 update: [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/setup-go` from 6.3.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6.3.0...v6.4.0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
640 B
YAML
26 lines
640 B
YAML
name: ci
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'gh-pages'
|
|
pull_request:
|
|
branches-ignore:
|
|
- 'gh-pages'
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.2
|
|
- uses: actions/setup-go@v6.4.0
|
|
with:
|
|
go-version: '^1.26'
|
|
- run: go version
|
|
- run: go install github.com/mattn/goveralls@latest
|
|
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
|
- run: make build.docker
|
|
- run: make test
|
|
- run: make check
|
|
- run: goveralls -coverprofile=profile.cov -service=github
|
|
env:
|
|
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|