Skip to content

Commit

Permalink
test with GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Robb Kidd <[email protected]>
  • Loading branch information
robbkidd committed Mar 18, 2020
1 parent d1e55c6 commit 98b1b69
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
name: Lint & Test with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup Ruby environment
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Testing & Linting
run: bundle exec rake

0 comments on commit 98b1b69

Please sign in to comment.