Skip to content

Commit

Permalink
Use GitHub Actions instead of TravisCI
Browse files Browse the repository at this point in the history
  • Loading branch information
roseliux committed Oct 20, 2021
1 parent 99850a3 commit c5ecab6
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ["2.6", "2.7", "3.0"]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

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

- name: Run tests
run: bundle exec rspec

10 changes: 0 additions & 10 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,6 +1,6 @@
# Heartcheck::Newrelic

[![Build Status](https://travis-ci.org/locaweb/heartcheck-newrelic.svg)](https://travis-ci.org/locaweb/heartcheck-newrelic)
[![Build Status](https://github.com/locaweb/heartcheck-newrelic/actions/workflows/ci.yml/badge.svg)](https://github.com/locaweb/heartcheck-newrelic/actions/workflows/ci.yml)

A [Heartcheck](https://github.com/locaweb/heartcheck) plugin for the
[NewRelic](https://newrelic.com/) monitoring service.
Expand Down

0 comments on commit c5ecab6

Please sign in to comment.