Skip to content

Commit

Permalink
Merge pull request #45 from thesecretmaster/scohe001-patch-1
Browse files Browse the repository at this point in the history
Add push action to run test suite
  • Loading branch information
scohe001 authored Jan 24, 2020
2 parents 7cf0eeb + 70f021a commit be23595
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Ruby

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup System
run: |
sudo apt-get install libsqlite3-dev
- name: Setup Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Bundle
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Test
run: ruby comment_scan/tests/test_master.rb

0 comments on commit be23595

Please sign in to comment.