Skip to content

Commit

Permalink
add gh actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Aug 14, 2020
1 parent cc05e61 commit 986d55a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Ruby

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: bundle install
- name: Run tests
run: |
bundle exec rake test TESTOPTS="-v"

0 comments on commit 986d55a

Please sign in to comment.