Skip to content

Commit

Permalink
Merge pull request #49 from anakinj/github-actions
Browse files Browse the repository at this point in the history
Replace TravisCI with GitHub Actions for supported Rubies
  • Loading branch information
VictorSNA authored Oct 18, 2021
2 parents 5f49809 + a1976b8 commit 65c3db7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 31 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
testgi:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["2.6", "2.7", "3.0"]

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

- name: Run tests
run: |
bundle install --jobs 4 --retry 3
bundle exec rspec
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

18 changes: 0 additions & 18 deletions bin/rspec

This file was deleted.

0 comments on commit 65c3db7

Please sign in to comment.