Skip to content

Update: Travis CI is no longer free 👷 #353

Update: Travis CI is no longer free 👷

Update: Travis CI is no longer free 👷 #353

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.7.x
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Build and test with Rake, RSpec, RuboCop, Fasterer
run: |
gem install bundler -v 2.0.2
bundle install --jobs 4 --retry 3
bundle exec rake
bundle exec rubocop
bundle exec fasterer
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1