Skip to content

Commit

Permalink
DEV: Replace Travis with GitHub Actions (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
CvX committed Jun 13, 2020
1 parent 2d99257 commit a6fc1c5
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 11 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,54 @@
name: CI

on:
pull_request:
push:
branches:
- master
tags:
- v*

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7

steps:
- uses: actions/checkout@v1

- name: Setup ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
architecture: 'x64'

- name: Setup bundler
run: gem install bundler

- name: Setup gems
run: bundle install

- name: Rubocop
run: bundle exec rubocop

- name: RSpec
run: bundle exec rspec

publish:
if: contains(github.ref, 'refs/tags/v')
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Release Gem
uses: CvX/publish-rubygems-action@master
env:
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit a6fc1c5

Please sign in to comment.