Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
833 B
YAML
43 lines
833 B
YAML
name: Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
ruby: [2.5, 2.6, 2.7, 3.0]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2.4.0
|
|
|
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
uses: actions/setup-ruby@v1.1.3
|
|
with:
|
|
ruby-version: ${{ matrix.ruby }}
|
|
|
|
- name: Install GEMs
|
|
run: |
|
|
gem install bundler
|
|
bundle config force_ruby_platform true
|
|
bundle config path vendor/bundle
|
|
bundle install --jobs 4 --retry 3
|
|
|
|
- name: rubocop
|
|
run: |
|
|
bundle exec rubocop
|
|
|
|
- name: rspec
|
|
run: |
|
|
bundle exec rspec
|
|
|
|
- name: Coveralls
|
|
uses: coverallsapp/github-action@master
|
|
continue-on-error: true
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|