Skip to content

Commit

Permalink
Merge pull request #7 from sdesani/travis-to-actions
Browse files Browse the repository at this point in the history
Use GitHub Actions instead of TravisCI
  • Loading branch information
VictorSNA authored Oct 27, 2021
2 parents e06eba0 + c634abb commit e6a2d77
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 12 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on: [push, pull_request]

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

steps:
- uses: actions/checkout@v2

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

- name: Install dependencies
run: bundle install -j 4 --retry 3

- name: Run tests
run: bundle exec rspec
11 changes: 0 additions & 11 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::Cas

[![Build Status](https://travis-ci.org/locaweb/heartcheck-cas.svg?branch=master)](https://travis-ci.org/locaweb/heartcheck-cas)
[![Build Status](https://github.com/locaweb/heartcheck-cas/actions/workflows/ci.yml/badge.svg)](https://github.com/locaweb/heartcheck-cas/actions/workflows/ci.yml)
[![Code Climate](https://codeclimate.com/github/locaweb/heartcheck-cas/badges/gpa.svg)](https://codeclimate.com/github/locaweb/heartcheck-cas)

A plugin to check CAS accessibility connection with [heartcheck](https://github.com/locaweb/heartcheck).
Expand Down

0 comments on commit e6a2d77

Please sign in to comment.