Compare commits
4 commits
master
...
feature/ac
Author | SHA1 | Date | |
---|---|---|---|
60f67541ae | |||
d1be96002a | |||
7b9086c67d | |||
4a596938d5 |
1 changed files with 21 additions and 0 deletions
21
.github/workflows/ruby.yml
vendored
Normal file
21
.github/workflows/ruby.yml
vendored
Normal 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
|
Loading…
Reference in a new issue