Skip to content

Commit

Permalink
Merge pull request #8 from roseliux/use-github-actions
Browse files Browse the repository at this point in the history
Use GitHub Actions instead of TravisCI
  • Loading branch information
VictorSNA authored Oct 20, 2021
2 parents 99850a3 + c5ecab6 commit 2df9422
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 2df9422

Please sign in to comment.