mirror of
https://github.com/safiire/n65.git
synced 2024-12-13 06:29:16 +00:00
22 lines
415 B
YAML
22 lines
415 B
YAML
name: Ruby
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
|
|
with:
|
|
ruby-version: 2.6
|
|
- name: Install dependencies
|
|
run: bundle install
|
|
- name: Run tests
|
|
run: bundle exec rake
|