Skip to content

Commit

Permalink
Add test suite workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nskins committed May 1, 2020
1 parent 9289242 commit 87b8f7c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Goby Test Suite

on: [push, pull_request]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec

0 comments on commit 87b8f7c

Please sign in to comment.