Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove travis CI integration #281

Merged
merged 4 commits into from May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: 1.13
- name: install golint
- name: Install golint
run: |
go get -u golang.org/x/lint/golint
- name: Before build
Expand All @@ -26,11 +26,12 @@ jobs:
./hack/verify-govet.sh
./hack/verify-golint.sh
go mod verify
- name: make test, make build, make docker-image
- name: Build and test
run: |
make test
make
make container-image
- name: Build container image
run: make container-image
- name: Push docker images
if: success() && github.event_name == 'push' && endsWith(github.ref ,'develop')
run: |
Expand All @@ -43,7 +44,7 @@ jobs:
chmod +x get_helm.sh
./get_helm.sh
helm lint helm/botkube
- name: Release Helm template
- name: Update and publish helm chart
if: success() && github.event_name == 'push' && endsWith(github.ref ,'develop')
run: |
cd ..
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Expand Up @@ -5,7 +5,7 @@ pull_request_rules:
- "#approved-reviews-by>=1"
- label=ready-to-merge
- label!=hold-off-merging
- status-success=continuous-integration/travis-ci/pr
- status-success=CI / build
actions:
merge:
method: squash
Expand Down
52 changes: 0 additions & 52 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,5 +1,5 @@
# BotKube
[![Build Status](https://travis-ci.org/infracloudio/botkube.svg?branch=master)](https://travis-ci.org/infracloudio/botkube) [![Go Report Card](https://goreportcard.com/badge/github.com/infracloudio/botkube)](https://goreportcard.com/report/github.com/infracloudio/botkube) [![BotKube website](https://img.shields.io/badge/docs-botkube.io-blue.svg)](https://botkube.io) [![GoDoc](https://godoc.org/github.com/infracloudio/botkube?status.svg)](https://godoc.org/github.com/infracloudio/botkube) [![Release Version](https://img.shields.io/github/v/release/infracloudio/botkube?label=Botkube)](https://github.com/infracloudio/botkube/releases/latest)
[![CI](https://github.com/infracloudio/botkube/workflows/CI/badge.svg?branch=develop)](https://github.com/infracloudio/botkube/actions?query=workflow%3ACI+branch%3Adevelop) [![Go Report Card](https://goreportcard.com/badge/github.com/infracloudio/botkube)](https://goreportcard.com/report/github.com/infracloudio/botkube) [![BotKube website](https://img.shields.io/badge/docs-botkube.io-blue.svg)](https://botkube.io) [![GoDoc](https://godoc.org/github.com/infracloudio/botkube?status.svg)](https://godoc.org/github.com/infracloudio/botkube) [![Release Version](https://img.shields.io/github/v/release/infracloudio/botkube?label=Botkube)](https://github.com/infracloudio/botkube/releases/latest)

For complete documentation visit www.botkube.io

Expand Down