Skip to content

Commit

Permalink
Replace Travis CI with GitHub Actions
Browse files Browse the repository at this point in the history
Travis just isn't what it used to be.
  • Loading branch information
gaffneyc committed Jan 24, 2022
1 parent 57b2af9 commit 5090d9e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 38 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,32 @@
name: Run Tests

on:
push:
branches:
- "master"
- "v3"

jobs:
spec:
runs-on: ubuntu-latest

strategy:
matrix:
ruby_version:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "head"

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true

- name: Run Tests
run: bundle exec rake
37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# Interactor

[![Gem Version](https://img.shields.io/gem/v/interactor.svg)](http://rubygems.org/gems/interactor)
[![Build Status](https://img.shields.io/travis/collectiveidea/interactor/master.svg)](https://travis-ci.org/collectiveidea/interactor)
[![Build Status](https://github.com/collectiveidea/interactor/actions/workflows/tests.yml/badge.svg)](https://github.com/collectiveidea/interactor/actions/workflows/tests.yml)
[![Maintainability](https://img.shields.io/codeclimate/maintainability/collectiveidea/interactor.svg)](https://codeclimate.com/github/collectiveidea/interactor)
[![Test Coverage](https://img.shields.io/codeclimate/coverage-letter/collectiveidea/interactor.svg)](https://codeclimate.com/github/collectiveidea/interactor)
[![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)
Expand Down

0 comments on commit 5090d9e

Please sign in to comment.