Skip to content

Bump github.com/argoproj/argo-rollouts from 1.7.0 to 1.7.1 #1405

Bump github.com/argoproj/argo-rollouts from 1.7.0 to 1.7.1

Bump github.com/argoproj/argo-rollouts from 1.7.0 to 1.7.1 #1405

Workflow file for this run

name: ci
on:
push:
branches-ignore:
- 'gh-pages'
pull_request:
branches-ignore:
- 'gh-pages'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.19'
- 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 }}