Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Aug 20, 2021
1 parent cdc8cc5 commit e17eb52
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14 # keep in sync with Dockerfile and .go-version
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test


8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Kube Remediator [![Build Status](https://travis-ci.com/aksgithub/kube_remediator.svg)](https://travis-ci.com/aksgithub/kube_remediator) [![coverage](https://img.shields.io/badge/coverage-100%25-success.svg)](https://github.com/aksgithub/kube_remediator)
# Kube Remediator [![Test](https://github.com/ankilosaurus/kube_remediator/actions/workflows/test.yaml/badge.svg)](https://github.com/ankilosaurus/kube_remediator/actions/workflows/test.yaml)


## Remediators
Expand Down

0 comments on commit e17eb52

Please sign in to comment.