Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ManageIQ/kubeclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: cben/kubeclient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 8, 2020

  1. convert to github actions

    grosser committed Nov 8, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    e270f56 View commit details

Commits on Nov 13, 2020

  1. Merge pull request #1 from cben/ga

    convert to github actions
    cben authored Nov 13, 2020
    Copy the full SHA
    952f3f7 View commit details
Showing with 24 additions and 26 deletions.
  1. +22 −0 .github/workflows/actions.yml
  2. +0 −24 .travis.yml
  3. +1 −1 README.md
  4. +1 −1 Rakefile
22 changes: 22 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7', 'truffleruby-head' ]
os: ['ubuntu-latest', 'macos-latest']
task: test
include:
# run rubocop against lowest supported ruby
- os: ubuntu-latest
ruby: '2.5'
task: rubocop

name: ${{ matrix.os }} ${{ matrix.ruby }} rake ${{ matrix.task }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install --jobs 4 --retry 3
- run: bundle exec rake ${{ matrix.ruby }}
24 changes: 0 additions & 24 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,7 +1,7 @@
# Kubeclient

[![Gem Version](https://badge.fury.io/rb/kubeclient.svg)](http://badge.fury.io/rb/kubeclient)
[![Build Status](https://travis-ci.org/abonas/kubeclient.svg?branch=master)](https://travis-ci.org/abonas/kubeclient)
[![Build Status](https://github.com/abonas/kubeclient/workflows/jobs/badge.svg)](https://github.com/abonas/kubeclient/actions?branch=master)
[![Code Climate](http://img.shields.io/codeclimate/github/abonas/kubeclient.svg)](https://codeclimate.com/github/abonas/kubeclient)

A Ruby client for Kubernetes REST api.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ require 'rake/testtask'
require 'rubocop/rake_task'
require 'yaml'

task default: %i[test rubocop] # same as .travis.yml
task default: %i[test rubocop] # same as .github/workflows/actions.yml

Rake::TestTask.new
RuboCop::RakeTask.new