Compare commits

..

4 commits

Author SHA1 Message Date
60f67541ae
Install packages with root 2019-09-17 08:47:27 -04:00
d1be96002a
Install sqlite...maybe 2019-08-27 22:56:58 -04:00
7b9086c67d
Use Ruby 2.6 2019-08-27 22:51:02 -04:00
4a596938d5
Try out actions 2019-08-27 22:49:07 -04:00

21
.github/workflows/ruby.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
sudo apt-get install libsqlite3-dev
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake